doc: fix test runner examples

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
Richie McColl
2023-02-10 11:46:24 +00:00
committed by GitHub
parent 214b00d215
commit be49214746

View File

@@ -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');
});
@@ -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');
});