We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deno test --filter
Assume we have a.js, like:
a.js
Deno.test("1", async (t) => { await t.step("2", () => { }); await t.step("3", () => { }); });
If we filter with 2, then it can't find any test case:
2
$ deno test --filter=2 a.js ok | 0 passed | 0 failed | 1 filtered out (1ms)
Is this by design, or should this execute subtest of matching name?
related: denoland/std#6063
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assume we have
a.js
, like:If we filter with
2
, then it can't find any test case:Is this by design, or should this execute subtest of matching name?
related: denoland/std#6063
The text was updated successfully, but these errors were encountered: