Skip to content

Commit c32fa39

Browse files
authored
Merge pull request #19949 from mozilla/fix-ui-test-runner
bug(many): Fix broken jest ui test runner
2 parents 701b660 + 8894e50 commit c32fa39

3 files changed

Lines changed: 18 additions & 6 deletions

File tree

.vscode/extensions.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"bierner.github-markdown-preview",
88
"alex-young.pm2-explorer",
99
"dannycoates.pm2-node-debugger",
10-
"firefox-devtools.vscode-firefox-debug",
11-
"firsttris.vscode-jest-runner"
10+
"firefox-devtools.vscode-firefox-debug"
1211
]
1312
}

.vscode/settings.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"playwright.env": {
1818
"NODE_OPTIONS": "--dns-result-order=ipv4first"
1919
},
20-
"editor.codeActionsOnSave": {
21-
},
20+
"editor.codeActionsOnSave": {},
2221
"[json]": {
2322
"editor.defaultFormatter": "esbenp.prettier-vscode"
2423
},
@@ -35,7 +34,7 @@
3534
"**/node_modules": true,
3635
"**/tmp": true,
3736
"**/temp": true,
38-
"*.sass-cache": true,
37+
"*.sass-cache": true
3938
},
40-
"cSpell.words": ["Frontends"]
39+
"jest.jestCommandLine": "node_modules/.bin/jest --config jest.config.ts"
4140
}

libs/shared/react/.swcrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"jsc": {
3+
"target": "es2017",
4+
"parser": {
5+
"syntax": "typescript",
6+
"decorators": true,
7+
"dynamicImport": true
8+
},
9+
"transform": {
10+
"decoratorMetadata": true,
11+
"legacyDecorator": true
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)