mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-06 23:06:54 +00:00
* chore: make vault action consumable * fix prefixless queries to default to data * fix the right build entrypoint * make output more forgiving and shore up selectors * clarify doc language * add npmtoken
35 lines
No EOL
1.2 KiB
JSON
35 lines
No EOL
1.2 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"name": "vscode-jest-tests",
|
|
"request": "launch",
|
|
"args": [
|
|
"--runInBand"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"disableOptimisticBPs": true,
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"name": "vscode-integration-tests",
|
|
"request": "launch",
|
|
"args": [
|
|
"--runInBand",
|
|
"--config=${workspaceFolder}/integrationTests/basic/jest.config.js"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"disableOptimisticBPs": true,
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
|
|
}
|
|
]
|
|
} |