Skip to content

Commit 8a61bbf

Browse files
authored
Fix make test/test-quick failing with IDBKeyRange not defined (#2196)
2 parents 7004333 + 30c0a97 commit 8a61bbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ repl:
8080
test:
8181
dune fmt --auto-promote || true
8282
dune build @ocaml-index @src/fmt @test/fmt --auto-promote src test --profile dev
83-
node --stack-size=8192 $(TEST_DIR)/haz3ltest.bc.js
83+
node --stack-size=8192 --require $(TEST_DIR)/idb_stub.js $(TEST_DIR)/haz3ltest.bc.js
8484

8585
test-quick:
8686
dune build @ocaml-index @src/fmt @test/fmt --auto-promote src test --profile dev
87-
node --stack-size=8192 $(TEST_DIR)/haz3ltest.bc.js -q
87+
node --stack-size=8192 --require $(TEST_DIR)/idb_stub.js $(TEST_DIR)/haz3ltest.bc.js -q
8888

8989
watch-test:
9090
dune build @ocaml-index @fmt @runtest @default --profile dev --auto-promote --watch

0 commit comments

Comments
 (0)