Skip to content

Commit

Permalink
doc: fix test runner examples
Browse files Browse the repository at this point in the history
PR-URL: #46565
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
  • Loading branch information
richiemccoll authored and MylesBorins committed Feb 18, 2023
1 parent ff95eb7 commit c771d66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/test.md
Expand Up @@ -912,7 +912,7 @@ before each subtest of the current suite.

```js
describe('tests', async () => {
beforeEach(() => t.diagnostic('about to run a test'));
beforeEach(() => console.log('about to run a test'));
it('is a subtest', () => {
assert.ok('some relevant assertion here');
});
Expand Down Expand Up @@ -943,7 +943,7 @@ after each subtest of the current test.

```js
describe('tests', async () => {
afterEach(() => t.diagnostic('about to run a test'));
afterEach(() => console.log('finished running a test'));
it('is a subtest', () => {
assert.ok('some relevant assertion here');
});
Expand Down

0 comments on commit c771d66

Please sign in to comment.