mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
57 lines
1.5 KiB
JSON
57 lines
1.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": [
|
||
|
|
{
|
||
|
|
"name": "Debug Tests (Linux, C++)",
|
||
|
|
"type": "cppdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "node",
|
||
|
|
"args": [
|
||
|
|
"${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
||
|
|
"--timeout",
|
||
|
|
"999999",
|
||
|
|
"--colors",
|
||
|
|
"${workspaceFolder}/test/test-main"
|
||
|
|
],
|
||
|
|
"stopAtEntry": false,
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"environment": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Debug Tests (Windows, C++)",
|
||
|
|
"type": "cppvsdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "node.exe",
|
||
|
|
"args": [
|
||
|
|
"${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
||
|
|
"--timeout",
|
||
|
|
"999999",
|
||
|
|
"--colors",
|
||
|
|
"${workspaceFolder}/test/test-main"
|
||
|
|
],
|
||
|
|
"stopAtEntry": false,
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"environment": [],
|
||
|
|
"externalConsole": true
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "node",
|
||
|
|
"request": "launch",
|
||
|
|
"name": "Debug Tests (typescript)",
|
||
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
||
|
|
"args": [
|
||
|
|
"--timeout",
|
||
|
|
"999999",
|
||
|
|
"--colors",
|
||
|
|
"${workspaceFolder}/test/test-main"
|
||
|
|
],
|
||
|
|
"internalConsoleOptions": "openOnSessionStart",
|
||
|
|
"smartStep": true,
|
||
|
|
"sourceMaps": true
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|