connor4312 / connor4312/nodejs-testing

Discovery of tests in identically-named suites in the same file only works for the last suite

Open
#65 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.