We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4751f5 commit 587114fCopy full SHA for 587114f
.vscode/extensions.json
@@ -0,0 +1,9 @@
1
+{
2
+ // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
+ // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4
+
5
+ // List of extensions which should be recommended for users of this workspace.
6
+ "recommendations": ["firsttris.vscode-jest-runner", "orta.vscode-jest"],
7
+ // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
8
+ "unwantedRecommendations": []
9
+}
.vscode/settings.json
@@ -0,0 +1,11 @@
+ "jestrunner.jestCommand": "npm test --",
+ "jestrunner.debugOptions": {
+ "runtimeExecutable": "node",
+ "runtimeArgs": [
+ "--experimental-vm-modules",
+ "node_modules/jest/bin/jest.js",
+ "--coverage"
+ ]
10
+ }
11
0 commit comments