We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f23ef0 commit 30c3d96Copy full SHA for 30c3d96
tests/wasm/test.js.in
@@ -1,5 +1,4 @@
1
-const child_process = require('child_process');
2
-const assert = require('assert');
+const assert = require('node:assert');
3
const test = require('node:test');
4
const wasm = require('${CMAKE_CURRENT_BINARY_DIR}/wasm');
5
@@ -29,7 +28,6 @@ const expected = {
29
28
30
test('wasm', async () => {
31
const { parse } = await wasm();
32
- console.log();
33
assert.deepStrictEqual(toJS(parse('https://google.com/?q=Yagiz#Nizipli')), expected);
34
});
35
0 commit comments