forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatchModeOnlyFailed.test.ts.snap
More file actions
47 lines (41 loc) · 1.29 KB
/
watchModeOnlyFailed.test.ts.snap
File metadata and controls
47 lines (41 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`can press "f" to run only failed tests: test results 1`] = `
FAIL __tests__/bar.spec.js
● bar 1
expect(received).toBe(expected) // Object.is equality
Expected: "foo"
Received: "bar"
1 |
> 2 | test('bar 1', () => { expect('bar').toBe('foo'); });
| ^
3 |
at Object.toBe (__tests__/bar.spec.js:2:43)
PASS __tests__/foo.spec.js
`;
exports[`can press "f" to run only failed tests: test results 2`] = `
FAIL __tests__/bar.spec.js
✕ bar 1
● bar 1
expect(received).toBe(expected) // Object.is equality
Expected: "foo"
Received: "bar"
1 |
> 2 | test('bar 1', () => { expect('bar').toBe('foo'); });
| ^
3 |
at Object.toBe (__tests__/bar.spec.js:2:43)
`;
exports[`can press "f" to run only failed tests: test summary 1`] = `
Test Suites: 1 failed, 1 passed, 2 total
Tests: 1 failed, 1 passed, 2 total
Snapshots: 0 total
Time: <<REPLACED>>
Ran all test suites.
`;
exports[`can press "f" to run only failed tests: test summary 2`] = `
Test Suites: 1 failed, 1 total
Tests: 1 failed, 1 total
Snapshots: 0 total
Time: <<REPLACED>>
Ran all test suites.
`;