Skip to content

Extension ignores non-only tests from a suite with only tests in node v24 #74

Description

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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