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

VS Code integration for node:test native tests

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

When a test throws an exception or an assertion is there somewhere I can see the call stack? eg: this is what is see with the extension: > ![image](https://github.com/connor4312/nodejs-testing/assets/179862/a34b7de8-ee62-4f78-acf4-8c8d3975fedc) whereas...

Support `nvm`, `fnm` and every node version manager that adds the node version to the PATH Fixes #26

Using the config ```json "nodejs-testing.extensions": [ { "extensions": ["mjs", "cjs", "js"], "parameters": [] }, { "extensions": ["mts", "cts", "ts"], "parameters": ["--import", "tsx"] } ] ``` I can make TypeScript tests...

Hello! Thanks for your extension! I have a problem. I have test data in '{project_dir}/testdata' folder, and I want them to load it from filesystem in tests. But it seems...

I have been using the Node.js test runner with a lot of tests in our project successfully via the Node.js CLI for some time, but experimenting with this extension today,...

Thanks for the extension! It would be great if you could use the version in the nvmrc file or the version of the current terminal in that directory (which will...

# Problem `it.only` isn't supported ![image](https://github.com/connor4312/nodejs-testing/assets/1003261/02e88840-8bd5-4aba-ba8f-4e8320b4c2db) # Discussion the node tester makes this perhaps obnoxious to support--one must pass a CLI arg up front. To support these, we'd need to...

Dear admired authors, I ran across a daily-work issue that might or might not be a bug concerning starting the debugger from the plugin. In my case I use to...

Hey, I'm trying the new code coverage feature, first of all, thank you for the work. It doesn't work for me, I don't know if I'm missing some configuration. Currently...

Dynamically named tests like ```ts void test("JSON tests", async (context) => { const input = ...; await context.test(`Converts ${input} parquet to JSON`, async () => { ... }); }); ```...

enhancement