File tree 3 files changed +30
-3
lines changed
3 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,8 @@ settings.yml
9
9
debug.log
10
10
* .swp
11
11
* .swo
12
- node_modules /*
13
- * .code-workspace
14
12
node_modules
15
- .vscode / *
13
+ * .code-workspace
16
14
.mypy_cache
17
15
package-lock.json
18
16
.idea
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : [
3
+ {
4
+ "type" : " node" ,
5
+ "name" : " vscode-jest-tests.v2" ,
6
+ "request" : " launch" ,
7
+ "console" : " integratedTerminal" ,
8
+ "internalConsoleOptions" : " neverOpen" ,
9
+ "runtimeExecutable" : " pnpm" ,
10
+ "cwd" : " ${workspaceFolder}" ,
11
+ "args" : [
12
+ " jest" ,
13
+ " -c" ,
14
+ " ${workspaceRoot}/jest.config.js" ,
15
+ " --runInBand" ,
16
+ " --watchAll=false" ,
17
+ " --testNamePattern" ,
18
+ " ${jest.testNamePattern}" ,
19
+ " --runTestsByPath" ,
20
+ " ${jest.testFile}"
21
+ ]
22
+ }
23
+ ]
24
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "jest.runMode" : " on-demand" ,
3
+ "jest.rootPath" : " src" ,
4
+ "jest.jestCommandLine" : " pnpm test:unit"
5
+ }
You can’t perform that action at this time.
0 commit comments