Skip to content

Commit

Permalink
test: fix enabled describe
Browse files Browse the repository at this point in the history
  • Loading branch information
avivkeller committed Apr 14, 2024
1 parent a8ce60d commit e5d96c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/test-runner/output/skip_pattern.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ it('top level it enabled', common.mustCall());
it('top level it disabled', common.mustNotCall());
it.skip('top level skipped it disabled', common.mustNotCall());
it.skip('top level skipped it enabled', common.mustNotCall());
describe('top level describe never disabled', common.mustCall());
describe('top level describe', common.mustCall());
describe.skip('top level skipped describe disabled', common.mustNotCall());
describe.skip('top level skipped describe enabled', common.mustNotCall());
test('this will NOt call', common.mustNotCall());

0 comments on commit e5d96c3

Please sign in to comment.