From 62f823d5a26ce25654d2970749a25e21600ccfe5 Mon Sep 17 00:00:00 2001 From: Deokjin Kim Date: Sat, 26 Aug 2023 23:57:18 +0900 Subject: [PATCH] doc: use `cjs` as block code's type in `MockTimers` Use `cjs` instead of `js` to show toggle button between CJS and ESM because corresponding example using `mjs` exists. PR-URL: https://github.com/nodejs/node/pull/49309 Reviewed-By: Geoffrey Booth Reviewed-By: Antoine du Hamel Reviewed-By: Chemi Atlow Reviewed-By: Raz Luvaton Reviewed-By: Luigi Pinca --- doc/api/test.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/api/test.md b/doc/api/test.md index a4936c0b72c35e..de5515fa53ad4b 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -1545,7 +1545,7 @@ import { mock } from 'node:test'; mock.timers.enable(['setInterval']); ``` -```js +```cjs const { mock } = require('node:test'); mock.timers.enable(['setInterval']); ``` @@ -1582,7 +1582,7 @@ import { mock } from 'node:test'; mock.timers.reset(); ``` -```js +```cjs const { mock } = require('node:test'); mock.timers.reset(); ``` @@ -1631,7 +1631,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'); @@ -1670,7 +1670,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'); @@ -1714,7 +1714,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'); @@ -1771,7 +1771,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'); const nodeTimers = require('node:timers'); @@ -1833,7 +1833,7 @@ test('should tick five times testing a real use case', async (context) => { }); ``` -```js +```cjs const assert = require('node:assert'); const { test } = require('node:test'); const nodeTimersPromises = require('node:timers/promises'); @@ -1899,7 +1899,7 @@ test('runAll functions following the given order', (context) => { }); ``` -```js +```cjs const assert = require('node:assert'); const { test } = require('node:test');