-
Notifications
You must be signed in to change notification settings - Fork 621
New issue
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
testing: bdd ".only" option might not work #2979
Comments
Thanks, Bartek. Steps to reproduce:
Observe that all of the tests still run. |
Since the describe call is at the top level of the file and not nested in another describe, it should be using I don't remember if this is the case but if |
@chooie I believe Running
After making the following changes: - const test = describe("Assembler");
+ const test = describe.only("Assembler");
The I believe this issue is happening because there's a symbol created using the const test = describe.only("Assembler");
describe(test, "Assemble", () => {/* expect to be run, but actually skipped */};
it(test, "Assemble", () => {/* will run as expected */}; This use case looks like it's supported in the code, although not specifically in the documentation. |
I'll be trying out a solution for this one. |
I think this is blocked by denoland/deno#17262 |
I haven't tested it but here's a report that it might not work: https://www.reddit.com/r/Deno/comments/zchl3q/showcase_my_first_project_in_deno_and_an_early/
The text was updated successfully, but these errors were encountered: