Neotest config for mocha tests to run on host instead of docker
This should really be a config set in the project and not a global thing but whatever.
This commit is contained in:
parent
13059ec752
commit
132504fbc0
@ -7,7 +7,7 @@ return {
|
||||
return {
|
||||
adapters = {
|
||||
["neotest-mocha"] = {
|
||||
command = "docker exec -it api-app npm run test:integration --",
|
||||
command = "npx ts-mocha --config ./test-integration/.mocharc.json -r tsconfig-paths/register -r ./test/config-mutation-setup.ts -r ./test-integration/hooks.ts",
|
||||
command_args = function(context)
|
||||
-- The context contains:
|
||||
-- results_path: The file that json results are written to
|
||||
@ -26,7 +26,7 @@ return {
|
||||
relative_path,
|
||||
}
|
||||
end,
|
||||
env = { CI = true },
|
||||
env = { CI = true, NODE_OPTIONS = "--trace-warnings --max-old-space-size=8192", NODE_ENV = "test" },
|
||||
cwd = function()
|
||||
return vim.fn.getcwd()
|
||||
end,
|
||||
|
Loading…
Reference in New Issue
Block a user