Files
speckle-automate-github-action/.vscode/launch.json
T
Iain Sproat 1fceda4724 test(coverage): 100% test coverage & refactor to vitest and msw (#6)
* chore(refactor): tests use vitest and msw
* fix(directory): Ensure filenames conform to eslint requirements
* chore(yarn): Specify node engine version
* fix(yarn): use the proper nodelinker
* fix(GitHub workflow): yarn install with caching
* docs(README): update to match changes

---------

Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
2023-03-23 15:37:32 +00:00

19 lines
534 B
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": "Test with YARN",
"request": "launch",
"console": "integratedTerminal",
"runtimeArgs": ["test"],
"runtimeExecutable": "yarn",
"skipFiles": ["<node_internals>/**"],
"type": "node"
// "envFile": "${workspaceFolder}/.env"
}
]
}