mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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:
@@ -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');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user