Skip to content

Commit

Permalink
update snapshots after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Apr 15, 2018
1 parent 7ea1284 commit 6cd69c0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ exports[`not throwing Error objects 5`] = `
26 | test('Error during test', () => {
27 | // eslint-disable-next-line no-undef
> 28 | doesNotExist.alsoThisNot;
| ^
29 | });
30 |
31 | test('done(Error)', done => {
Expand All @@ -131,6 +132,7 @@ exports[`not throwing Error objects 5`] = `
30 |
31 | test('done(Error)', done => {
> 32 | done(new Error('this is an error'));
| ^
33 | });
34 |
35 | test('done(non-error)', done => {
Expand All @@ -151,6 +153,7 @@ exports[`not throwing Error objects 5`] = `
34 |
35 | test('done(non-error)', done => {
> 36 | done(deepObject);
| ^
37 | });
38 |
Expand Down

0 comments on commit 6cd69c0

Please sign in to comment.