forked from kulshekhar/ts-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-set.spec.ts.snap
More file actions
46 lines (43 loc) · 871 Bytes
/
config-set.spec.ts.snap
File metadata and controls
46 lines (43 loc) · 871 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
37
38
39
40
41
42
43
44
45
46
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`jest should merge parent config if any 1`] = `
Object {
"__backported": true,
"globals": Object {
"ts-jest": Object {
"__parent": true,
},
},
}
`;
exports[`jest should returns correct config and go thru backports 1`] = `
Object {
"__backported": true,
"globals": Object {},
}
`;
exports[`tsJest should return correct defaults 1`] = `
Object {
"babelConfig": undefined,
"compiler": "typescript",
"diagnostics": Object {
"ignoreCodes": Array [
6059,
18002,
18003,
],
"pretty": true,
"throws": true,
},
"isolatedModules": false,
"packageJson": Object {
"kind": "file",
"value": undefined,
},
"stringifyContentPathRegex": undefined,
"transformers": Array [],
"tsConfig": Object {
"kind": "file",
"value": undefined,
},
}
`;