We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9f2283 commit 42f61a4Copy full SHA for 42f61a4
babel.config.json
@@ -0,0 +1,9 @@
1
+{
2
+ "presets": [
3
+ [
4
+ "@babel/preset-env", {
5
+ "targets": {"node": "current"}
6
+ }
7
+ ]
8
9
+}
package.json
@@ -75,10 +75,17 @@
75
"node"
76
],
77
"testMatch": [
78
- "**/?(*.)test.?js"
+ "**/?(*.)test.?js"
79
80
"testPathIgnorePatterns": [
81
- "/node_modules/", "/cypress/"
+ "/node_modules/",
82
+ "/cypress/"
83
+ ],
84
+ "transform": {
85
+ "^.+\\.m?js$": "babel-jest"
86
+ },
87
+ "transformIgnorePatterns": [
88
+ "\\.pnp\\.[^\\/]+$"
89
]
90
}
91
0 commit comments