mirror of https://github.com/Budibase/budibase.git
6 changed files with 479 additions and 9 deletions
@ -1 +1 @@ |
|||
Subproject commit 10009efb45995dc6a01ae941e8e539e2226a115c |
|||
Subproject commit 29318b29d35ac8d8bfb137a5e739a308e01c1829 |
|||
@ -0,0 +1,38 @@ |
|||
{ |
|||
// 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", |
|||
"request": "launch", |
|||
"name": "Jest All", |
|||
"program": "${workspaceFolder}/node_modules/.bin/jest", |
|||
"args": ["--runInBand"], |
|||
"console": "integratedTerminal", |
|||
"internalConsoleOptions": "neverOpen", |
|||
"disableOptimisticBPs": true, |
|||
"windows": { |
|||
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest", |
|||
} |
|||
}, |
|||
{ |
|||
"type": "node", |
|||
"request": "launch", |
|||
"name": "Jest Current File", |
|||
"program": "${workspaceFolder}/node_modules/.bin/jest", |
|||
"args": [ |
|||
"${fileBasenameNoExtension}", |
|||
"--config", |
|||
"jest.config.js" |
|||
], |
|||
"console": "integratedTerminal", |
|||
"internalConsoleOptions": "neverOpen", |
|||
"disableOptimisticBPs": true, |
|||
"windows": { |
|||
"program": "${workspaceFolder}/node_modules/jest/bin/jest", |
|||
} |
|||
} |
|||
] |
|||
} |
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue