Skip to content

Commit fb0215b

Browse files
authored
fix: correct assertion import syntax in getting-started guide (#5526)
1 parent cb47925 commit fb0215b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs-next/src/content/docs/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Create the following `example.test.js` file under a `test/` directory:
2121

2222
```js
2323
// test/example.test.js
24-
import { assert } from "node:assert";
24+
import assert from "node:assert";
2525

2626
describe("Array", function () {
2727
describe("#indexOf()", function () {

0 commit comments

Comments
 (0)