Skip to content

Commit

Permalink
added sample jest debugger to launch_gitpod
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerdinacan committed Mar 10, 2021
1 parent d10883b commit 44b577d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .vscode/launch_gitpod.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["--app-dir", "lib", "--factory", "galaxy.webapps.galaxy.fast_factory:factory"],
"args": ["--app-dir", "lib", "--factory", "galaxy.webapps.galaxy.fast_factory:factory"],
"env": {
"GALAXY_CONFIG_FILE": "${workspaceFolder}/config/galaxy.yml",
"GALAXY_CONDA_AUTO_INIT": "false",
Expand All @@ -26,7 +26,21 @@
"-k",
"job_properties_test_2"
]
},
{
"type": "node",
"name": "debug selected jest unit test",
"request": "launch",
"program": "${workspaceFolder}/client/node_modules/jest/bin/jest",
"args": [
"--runInBand",
"--config",
"${workspaceFolder}/client/tests/jest/jest.config.js",
"${file}"
],
"cwd": "${workspaceFolder}/client",
"console": "integratedTerminal",
"disableOptimisticBPs": true
}
]
}

0 comments on commit 44b577d

Please sign in to comment.