File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "type" : " node" ,
9
+ "request" : " launch" ,
10
+ "name" : " Jest - current file" ,
11
+ // Run yarn from the directory containing the test.
12
+ // Yarn will run the test script from the nearest package.json in parent directories.
13
+ "cwd" : " ${fileDirname}" ,
14
+ "runtimeExecutable" : " yarn" ,
15
+ // Pass the test file's path to yarn to filter to run only the current test.
16
+ // Use the path instead of the file name to avoid also running any tests with the same
17
+ // name in different directories.
18
+ "runtimeArgs" : [" test" , " ${relativeFile}" ],
19
+ "console" : " integratedTerminal"
20
+ }
21
+ ]
22
+ }
You can’t perform that action at this time.
0 commit comments