140 lines
4.5 KiB
JSON
140 lines
4.5 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",
|
||
|
"request": "launch",
|
||
|
"name": "Start Server",
|
||
|
"program": "${workspaceFolder}/src/index.js"
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - All",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": [],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Users",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["user.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Instances",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["instance.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Roles",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["role.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Records",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["record.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Models",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["table.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Views",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["view.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest - Applications",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["application.spec", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest Builder",
|
||
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
||
|
"args": ["builder", "--runInBand"],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "neverOpen",
|
||
|
"disableOptimisticBPs": true,
|
||
|
"windows": {
|
||
|
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Initialise Budibase",
|
||
|
"program": "yarn",
|
||
|
"args": ["run", "initialise"],
|
||
|
"console": "externalTerminal"
|
||
|
}
|
||
|
]
|
||
|
}
|