connor4312 / connor4312/nodejs-testing
Discovery of tests in identically-named suites in the same file only works for the last suite
Open
- Dominant language
- TypeScript
- Stars
- 67
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
```
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.