fix: don't run waku/run tests in CI

This commit is contained in:
Arseniy Klempner 2025-10-09 17:34:01 -07:00
parent 0966ed1e99
commit 0736926e37
No known key found for this signature in database
GPG Key ID: 51653F18863BD24B

View File

@ -39,8 +39,8 @@
"restart": "npm run stop && npm run start",
"logs": "docker compose logs -f",
"info": "tsx scripts/info.ts",
"test": "NODE_ENV=test node ./src/run-tests.js \"tests/basic.spec.ts\"",
"test:browser": "npm run build:web && npx playwright test --reporter=line",
"test": "if [ \"$CI\" = \"true\" ]; then echo 'Skipping tests in CI'; exit 0; fi && NODE_ENV=test node ./src/run-tests.js \"tests/basic.spec.ts\"",
"test:browser": "if [ \"$CI\" = \"true\" ]; then echo 'Skipping browser tests in CI'; exit 0; fi && npm run build:web && npx playwright test --reporter=line",
"fix": "run-s fix:*",
"fix:lint": "eslint src scripts tests web --fix",
"check": "run-s check:*",