nodejs-testing icon indicating copy to clipboard operation
nodejs-testing copied to clipboard

VS Code integration for node:test native tests

Results 35 nodejs-testing issues
Sort by recently updated
recently updated
newest added

```javascript import { suite, it } from "node:test"; suite("Tee suite", () => { it("Tee", () => console.log("Tee")); it("Only tee", { only: true }, () => console.log("Only Tee")); }) ``` Running...

This also causes executed tests to not show up. The root cause is an [issue](https://github.com/hediet/typed-json-rpc/issues/15) in typed-json-rpc

[This invocation of spawn()](https://github.com/connor4312/nodejs-testing/blob/ee39d460a353f2bbaa01f513f94f207738c37b3c/src/pretest.ts#L41C7-L41C13) will hang on Windows if the pretest command is a `.bat` or `.cmd` file. The [node](https://nodejs.org/api/child_process.html#spawning-bat-and-cmd-files-on-windows) documentation indicates that in order for that scenario to work...

Ever since `--experimental-strip-types` got unflagged, node:test now also runs typescript files by default. The extension should be updated to account for this I currently have to use the following config...

Due to the fact that extension added --test-reporter without --test-reporter-destination here https://github.com/connor4312/nodejs-testing/blob/ee39d460a353f2bbaa01f513f94f207738c37b3c/src/runner-worker.ts#L130 I could not add my own reporters so I have to add one additional `--test-reporter-destination` flag but it...