VS Code integration for node:test native tests
``` describe("math", () => { it("addition", async () => { console.log("some log"); strictEqual(1 + 1, 2); }); }); describe("math", () => { it(`subtraction`, async () => { process.stdout.write("another log"); strictEqual(1 - 1, 0); }); }); ``` **NOK**: Only math > subtraction will be discovered
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by ILikeRubberDuckies and has received 0 comments.