🌐 AI搜索 & 代理 主页
Skip to content
Prev Previous commit
Next Next commit
fixup! migrate to commander options
  • Loading branch information
timmywil committed Dec 30, 2024
commit cb774cd026c1395a56f4ddd81b2de145614b1383
3 changes: 2 additions & 1 deletion .github/workflows/browser-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
- name: Run tests
run: |
npm run pretest
npm run test:unit -- -b ${{ matrix.BROWSER }} -h \
npm run test:unit -- \
--headless -b ${{ matrix.BROWSER }} \
-c jtr-local.yml \
--jquery-migrate ${{ matrix.MIGRATE_VERSION }} \

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"prepare": "husky",
"pretest": "npm run npmcopy && npm run build && npm run lint",
"start": "npm run npmcopy && node build/tasks/build-watch.js",
"test:browser": "npm run pretest && npm run test:unit -- -b chrome -b firefox -h",
"test:browser": "npm run pretest && npm run test:unit -- -b chrome -b firefox --headless",
"test:ie": "npm run pretest && npm run test:unit -- -v -b ie",
"test:node_smoke_tests": "npm run pretest && node test/node_smoke_tests/smoke_tests.cjs",
"test:safari": "npm run pretest && npm run test:unit -- -v -b safari",
"test:server": "jtr serve",
"test:unit": "jtr run",
"test:unit": "jtr",
"test": "npm run test:node_smoke_tests && npm run test:browser"
},
"peerDependencies": {
Expand Down