connor4312 / connor4312/nodejs-testing
Extension ignores non-only tests from a suite with only tests in node v24
Open
- Dominant language
- TypeScript
- Stars
- 67
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
```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 suite in 22:
\>Tee
\>Only Tee
In 24.5:
\>Only Tee
Running with `node --test` works as expected in 24
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.