Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6cd69c0

Browse files
committedApr 15, 2018
update snapshots after rebase
1 parent 7ea1284 commit 6cd69c0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎integration-tests/__tests__/__snapshots__/failures.test.js.snap

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ exports[`not throwing Error objects 5`] = `
118118
26 | test('Error during test', () => {
119119
27 | // eslint-disable-next-line no-undef
120120
> 28 | doesNotExist.alsoThisNot;
121+
| ^
121122
29 | });
122123
30 |
123124
31 | test('done(Error)', done => {
@@ -131,6 +132,7 @@ exports[`not throwing Error objects 5`] = `
131132
30 |
132133
31 | test('done(Error)', done => {
133134
> 32 | done(new Error('this is an error'));
135+
| ^
134136
33 | });
135137
34 |
136138
35 | test('done(non-error)', done => {
@@ -151,6 +153,7 @@ exports[`not throwing Error objects 5`] = `
151153
34 |
152154
35 | test('done(non-error)', done => {
153155
> 36 | done(deepObject);
156+
| ^
154157
37 | });
155158
38 |
156159

0 commit comments

Comments
 (0)
Please sign in to comment.