Skip to content

Commit

Permalink
doc: fix info string causing duplicated code blocks
Browse files Browse the repository at this point in the history
Two fenced code blocks were incorrectly labeled as `js` instead of
`cjs`, causing both ESM and CJS version to be shown on
https://nodejs.org/api/test.html#timers instead of being conditionally
shown depending on the value of the "CJS / ESM" toggle.

PR-URL: #52660
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
mleenhardt authored and marco-ippolito committed May 3, 2024
1 parent 6826bbf commit 4d5ef4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
});
```

```js
```cjs
const assert = require('node:assert');
const { mock, test } = require('node:test');

Expand All @@ -625,7 +625,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
// Reset the globally tracked mocks.
mock.timers.reset();

// If you call reset mock instance, it'll also reset timers instance
// If you call reset mock instance, it will also reset timers instance
mock.reset();
});
```
Expand Down Expand Up @@ -653,7 +653,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
});
```

```js
```cjs
const assert = require('node:assert');
const { test } = require('node:test');

Expand Down

0 comments on commit 4d5ef4f

Please sign in to comment.