Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ jobs:
- uses: denoland/setup-deno@v2
with:
# https://github.com/denoland/deno/releases
deno-version: "2.6.5"
deno-version: "2.7.14"
- name: run deno tests:dexie
run: |
sudo npm i -g cross-env
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -435,10 +435,10 @@
"test:node:dexie": "npm run transpile && cross-env DEFAULT_STORAGE=dexie mocha --expose-gc --config ./config/.mocharc.cjs ./test_tmp/unit.test.js",
"test:bun:dexie": "npm run transpile && cross-env DEFAULT_STORAGE=dexie NODE_ENV=fast bun run ./node_modules/mocha/bin/mocha test_tmp/unit.test.js --bail --timeout 60000",
"test:bun:memory": "npm run transpile && cross-env DEFAULT_STORAGE=memory NODE_ENV=fast bun run ./node_modules/mocha/bin/mocha test_tmp/unit.test.js --bail --timeout 60000",
"test:deno:dexie": "npm run transpile && cross-env DEFAULT_STORAGE=dexie deno run --unstable-broadcast-channel --unstable-byonm --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail",
"test:deno:denokv": "npm run transpile && cross-env DEFAULT_STORAGE=denokv deno run --unstable-kv --unstable-broadcast-channel --unstable-byonm --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail --timeout 150000",
"test:deno:dexie": "npm run transpile && cross-env DEFAULT_STORAGE=dexie deno run --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail",
"test:deno:denokv": "npm run transpile && cross-env DEFAULT_STORAGE=denokv deno run --unstable-kv --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail --timeout 150000",
"test:deno:denokv:loop": "npm run test:deno:denokv && npm run test:deno:denokv:loop",
"test:deno:memory": "npm run transpile && cross-env DEFAULT_STORAGE=memory deno run --unstable-broadcast-channel --unstable-byonm --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail",
"test:deno:memory": "npm run transpile && cross-env DEFAULT_STORAGE=memory deno run --import-map=config/deno-import-map.json -A npm:mocha ./test/unit.test.ts --bail",
"test:node:foundationdb": "npm run transpile && cross-env DEFAULT_STORAGE=foundationdb mocha --expose-gc --config ./config/.mocharc.cjs ./test_tmp/unit.test.js",
"test:node:mongodb": "npm run transpile && cross-env DEFAULT_STORAGE=mongodb mocha --expose-gc --config ./config/.mocharc.cjs ./test_tmp/unit.test.js",
"test:node:mongodb:loop": "npm run test:node:mongodb && npm run test:node:mongodb:loop",
Expand Down
Loading