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

I encountered a weird bug: ``` import assert from "node:assert/strict"; import { describe, it } from "node:test"; describe("A", () => { describe("A.1", () => { it("works", async () => {...

Hi! Firstly, thank you for this extension. ❤️ I have just enabled this extension for my large work project and I've noticed that it takes quite a long time to...

question

I can configure extension add `--watch` to parameters, but ive tried it and it doesn't seem to work as in it doesn't rerun tests when I change the file. Regardless,...

enhancement

I'm unable to see any branch coverage in the "test coverage" pane. I only see statement and function coverage. I've created a minimal example to reproduce this. ```js // main.mjs...

enhancement

Node 22.3 added snapshot tests, we should make sure they're supported nicely and can be updated with UI flows

Normally when running the debugger the `launch.json` file can be used to control various settings including `skipFiles` which allows us to, among other things, ignore files in `node_modules`. However it...

I'm trying to set up some tests for a package I'm compiling with Babel (in order to use Stage 3 decorators). Babel is compiling files from `src` into `dist` with...

At the moment, after a test is run if you select the test result from the list, the result panel will say "The test case did not report any output."...

Previously I had v1.5.2 installed from the extensions marketplace, but there is no tag, release, or commit for v1.5.2 that I can see. Today the extension updated to v1.6.0 and...

When writing a test with subtests, the test explorer doesn't list the subtests and the subtests are not reported in the test results. Furthermore, when an error occurs the message...

question