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 678e918 commit f0da789
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ exports[`cannot test with no implementation 1`] = `
1 |
2 | it('it', () => {});
> 3 | it('it, no implementation');
| ^
| ^
4 | test('test, no implementation');
5 |
Expand Down Expand Up @@ -57,7 +57,7 @@ exports[`cannot test with no implementation with expand arg 1`] = `
1 |
2 | it('it', () => {});
> 3 | it('it, no implementation');
| ^
| ^
4 | test('test, no implementation');
5 |
Expand Down

0 comments on commit f0da789

Please sign in to comment.