File tree 2 files changed +43
-19
lines changed 2 files changed +43
-19
lines changed Original file line number Diff line number Diff line change 28
28
"locals" : [" module" ]
29
29
}]
30
30
}]]
31
+ },
32
+ "test" : {
33
+ "retainLines" : true ,
34
+ "sourceMaps" : " inline"
31
35
}
32
36
}
33
37
}
Original file line number Diff line number Diff line change 4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
"version" : " 0.2.0" ,
6
6
"configurations" : [
7
- {
8
- "type" : " node" ,
9
- "request" : " launch" ,
10
- "name" : " Jest Debugger" ,
11
- "port" : 9229 ,
12
- "address" : " localhost" ,
13
- "stopOnEntry" : false ,
14
- "runtimeExecutable" : null ,
15
- "runtimeArgs" : [
16
- " --inspect-brk" ,
17
- " ./node_modules/.bin/jest" , // Path to Jest
18
- " -i" ,
19
- " --config=jest.config.json"
20
- ],
21
- "env" : {
22
- "TZ" : " utc"
23
- },
24
- "cwd" : " ${workspaceRoot}" ,
25
- "sourceMaps" : true
7
+ {
8
+ "type" : " node" ,
9
+ "request" : " launch" ,
10
+ "name" : " Jest All" ,
11
+ "program" : " ${workspaceFolder}/node_modules/.bin/jest" ,
12
+ "env" : {
13
+ "TZ" : " utc"
14
+ },
15
+ "args" : [
16
+ " --config=jest.config.json" ,
17
+ " --runInBand"
18
+ ],
19
+ "console" : " integratedTerminal" ,
20
+ "internalConsoleOptions" : " neverOpen" ,
21
+ "windows" : {
22
+ "program" : " ${workspaceFolder}/node_modules/jest/bin/jest" ,
26
23
}
24
+ },
25
+ {
26
+ "type" : " node" ,
27
+ "request" : " launch" ,
28
+ "name" : " Jest Current File" ,
29
+ "program" : " ${workspaceFolder}/node_modules/.bin/jest" ,
30
+ "env" : {
31
+ "TZ" : " utc"
32
+ },
33
+ "args" : [
34
+ " --config=jest.config.json" ,
35
+ " --runInBand" ,
36
+ " --no-cache" ,
37
+ " --verbose" ,
38
+ " -i" ,
39
+ " ${relativeFile}"
40
+ ],
41
+ "console" : " integratedTerminal" ,
42
+ "internalConsoleOptions" : " neverOpen" ,
43
+ "windows" : {
44
+ "program" : " ${workspaceFolder/node_modules/jest/bin/jest" ,
45
+ },
46
+ }
27
47
]
28
48
}
You can’t perform that action at this time.
0 commit comments