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 committed Feb 10, 2023
1 parent 214b00d commit be49214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/test.md
Expand Up @@ -916,7 +916,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 @@ -947,7 +947,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 be49214

Please sign in to comment.