We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 913e4df commit 99bc6b0Copy full SHA for 99bc6b0
.browserslistrc
@@ -1,3 +1,2 @@
1
> 1%
2
last 2 versions
3
-not ie <= 8
jest.config.js
@@ -12,6 +12,9 @@ module.exports = {
12
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
13
'^.+\\.tsx?$': 'ts-jest'
14
},
15
+ transformIgnorePatterns: [
16
+ '/node_modules/'
17
+ ],
18
moduleNameMapper: {
19
'^@/(.*)$': '<rootDir>/src/$1'
20
@@ -34,6 +37,10 @@ module.exports = {
34
37
'text-summary'
35
38
],
36
39
testURL: 'http://localhost/',
40
+ watchPlugins: [
41
+ 'jest-watch-typeahead/filename',
42
+ 'jest-watch-typeahead/testname'
43
44
globals: {
45
'ts-jest': {
46
babelConfig: true
0 commit comments