Skip to content

Commit f3fea92

Browse files
OshriAsulinruyadorno
authored andcommitted
doc: fix missing imports in test.run code examples
The script was missing necessary imports for the `run` function and the `path` module, causing it to fail. This commit adds the missing imports and resolves the issue. - Import `run` from the appropriate module. - Import `path` to resolve file paths. The script should now run without errors. PR-URL: #49489 Fixes: #49488 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 00608e8 commit f3fea92

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

doc/api/test.md

+4
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,9 @@ changes:
927927

928928
```mjs
929929
import { tap } from 'node:test/reporters';
930+
import { run } from 'node:test';
930931
import process from 'node:process';
932+
import path from 'node:path';
931933

932934
run({ files: [path.resolve('./tests/test.js')] })
933935
.compose(tap)
@@ -936,6 +938,8 @@ run({ files: [path.resolve('./tests/test.js')] })
936938

937939
```cjs
938940
const { tap } = require('node:test/reporters');
941+
const { run } = require('node:test');
942+
const path = require('node:path');
939943

940944
run({ files: [path.resolve('./tests/test.js')] })
941945
.compose(tap)

0 commit comments

Comments
 (0)