-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Debug output should create a debug file with the correct output if the flag is set 1`] = ` | ||
"[ | ||
\\"Original typescript config before modifications: \\", | ||
{ | ||
\\"target\\": 1, | ||
\\"module\\": 1, | ||
\\"moduleResolution\\": 2, | ||
\\"noEmitOnError\\": false, | ||
\\"jsx\\": 2, | ||
\\"allowJs\\": true, | ||
\\"inlineSourceMap\\": true, | ||
\\"inlineSources\\": true | ||
} | ||
] | ||
[ | ||
\\"final compilerOptions:\\", | ||
{ | ||
\\"target\\": 1, | ||
\\"module\\": 1, | ||
\\"moduleResolution\\": 2, | ||
\\"noEmitOnError\\": false, | ||
\\"jsx\\": 2, | ||
\\"allowJs\\": true, | ||
\\"inlineSourceMap\\": true, | ||
\\"inlineSources\\": true | ||
} | ||
] | ||
[ | ||
\\"tsJestConfig: \\", | ||
{} | ||
] | ||
[ | ||
\\"Using babel with options:\\", | ||
{ | ||
\\"babelrc\\": false, | ||
\\"plugins\\": [], | ||
\\"presets\\": [] | ||
} | ||
]" | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,6 @@ | |
"json" | ||
], | ||
"globals": { | ||
"ts-jest": { | ||
"debug": true | ||
} | ||
} | ||
} | ||
} |