Skip to content

Commit 6670d0c

Browse files
authored
[UIE-71] Add VSCode launch config for running current test file (#4097)
1 parent 3ff1cd6 commit 6670d0c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
}

0 commit comments

Comments
 (0)