mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
25 lines
742 B
JSON
25 lines
742 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Jasmine Tests",
|
|
"program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",
|
|
"args": [
|
|
"${workspaceFolder}/spec/attr_spec.js"
|
|
],
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
},{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Jasmine Tests current test file",
|
|
"program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",
|
|
"args": [
|
|
"${file}"
|
|
],
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
}
|
|
]
|
|
|
|
} |