We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea270b commit 6635d93Copy full SHA for 6635d93
2 files changed
CHANGELOG.md
@@ -7,6 +7,8 @@
7
8
### Fixes
9
10
+* `[babel-jest]` Remove retainLines from babel-jest
11
+ ([#5326](https://github.com/facebook/jest/issues/5326))
12
* `[jest-cli]` Glob patterns ignore non-`require`-able files (e.g. `README.md`)
13
([#5199](https://github.com/facebook/jest/issues/5199))
14
* `[jest-mock]` Add backticks support (\`\`) to `mock` a certain package via the
packages/babel-jest/src/index.js
@@ -69,7 +69,6 @@ const createTransformer = (options: any) => {
69
options = Object.assign({}, options, {
70
plugins: (options && options.plugins) || [],
71
presets: ((options && options.presets) || []).concat([jestPreset]),
72
- retainLines: true,
73
sourceMaps: 'inline',
74
});
75
delete options.cacheDirectory;
0 commit comments