diff options
Diffstat (limited to 'tests/js/utils.mjs')
-rw-r--r-- | tests/js/utils.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/js/utils.mjs b/tests/js/utils.mjs index e4f21d0..e2475b0 100644 --- a/tests/js/utils.mjs +++ b/tests/js/utils.mjs @@ -1,6 +1,6 @@ import assert from "node:assert/strict"; -import { runTests } from "../runner.mjs"; +import * as runner from "../runner.mjs"; import { eq, keys, @@ -291,7 +291,7 @@ const test_promisify = t => { }; -await runTests([ +await runner.runTests([ test_eq, test_keys, test_difference, |