Skip to content

Commit 6126830

Browse files
richiemccolldanielleadams
authored andcommitted
doc: fix test runner examples
PR-URL: #46565 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent e0f4360 commit 6126830

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/test.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ before each subtest of the current suite.
921921

922922
```js
923923
describe('tests', async () => {
924-
beforeEach(() => t.diagnostic('about to run a test'));
924+
beforeEach(() => console.log('about to run a test'));
925925
it('is a subtest', () => {
926926
assert.ok('some relevant assertion here');
927927
});
@@ -950,7 +950,7 @@ after each subtest of the current test.
950950

951951
```js
952952
describe('tests', async () => {
953-
afterEach(() => t.diagnostic('about to run a test'));
953+
afterEach(() => console.log('finished running a test'));
954954
it('is a subtest', () => {
955955
assert.ok('some relevant assertion here');
956956
});

0 commit comments

Comments
 (0)