When I click the play button, vscode fails with this:
I have a simple project:
index.ts:
export function myTest(arg:number) {
return arg + 1;
}
index.test.ts:
import { myTest } from "./index.ts";
Deno.test("myTest", () => {
if (myTest(1) !== 2) {
throw new Error("wtf");
}
});
I'm not sure what is the cause as I have deno in the path (vscode deno integration works). Is just when clicking an arrow to run a test. Also happens in the vscode Test Explorer. The tests appear but impossible to run by clicking the play button.
When I click the play button, vscode fails with this:
I have a simple project: index.ts:
index.test.ts:
I'm not sure what is the cause as I have deno in the path (vscode deno integration works). Is just when clicking an arrow to run a test. Also happens in the vscode Test Explorer. The tests appear but impossible to run by clicking the play button.
Versions: