25 lines
601 B
JSON
25 lines
601 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"name": "vscode-jest-tests.v2",
|
|
"request": "launch",
|
|
"args": [
|
|
"--runInBand",
|
|
"--watchAll=false",
|
|
"--testNamePattern",
|
|
"${jest.testNamePattern}",
|
|
"--runTestsByPath",
|
|
"${jest.testFile}"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
"env": {
|
|
"NODE_OPTIONS": "--experimental-vm-modules"
|
|
}
|
|
}
|
|
]
|
|
} |