-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Expand file tree
/
Copy pathjest.config.js.test.ts.snap
More file actions
36 lines (29 loc) · 839 Bytes
/
jest.config.js.test.ts.snap
File metadata and controls
36 lines (29 loc) · 839 Bytes
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`traverses directory tree up until it finds jest.config 1`] = `
console.log
<<REPLACED>>/jest.config.js/some/nested/directory
at Object.log (__tests__/a-banana.js:3:27)
`;
exports[`traverses directory tree up until it finds jest.config 2`] = `
PASS ../../../__tests__/a-banana.js
✓ banana
✓ abc
`;
exports[`traverses directory tree up until it finds jest.config 3`] = `
Test Suites: 1 passed, 1 total
Tests: 2 passed, 2 total
Snapshots: 0 total
Time: <<REPLACED>>
Ran all test suites.
`;
exports[`works with jest.config.js 1`] = `
PASS __tests__/a-banana.js
✓ banana
`;
exports[`works with jest.config.js 2`] = `
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: <<REPLACED>>
Ran all test suites.
`;