Files
Christopher Schleiden 2e1652515e Initial code import
2022-11-08 17:00:59 -08:00

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"
}
}
]
}