Skip to content

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

@ILikeRubberDuckies

Description

@ILikeRubberDuckies
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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions