chore: fix ci

This commit is contained in:
Nathan
2025-11-15 22:57:49 +08:00
parent cd861d3be0
commit 9a0cd8a3d2

View File

@@ -18,21 +18,21 @@
"test:components": "cypress run --component --browser chrome --headless",
"test:unit": "jest --coverage",
"test:unit:coverage": "cross-env COVERAGE=true jest --coverage",
"test:http-api": "jest src/application/services/js-services/http/__tests__/*.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:coverage": "jest src/application/services/js-services/http/__tests__/*.integration.test.ts --coverage --maxWorkers=1",
"test:http-api:auth": "jest src/application/services/js-services/http/__tests__/auth.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:workspace": "jest src/application/services/js-services/http/__tests__/workspace.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:user-profile": "jest src/application/services/js-services/http/__tests__/user-profile.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:page": "jest src/application/services/js-services/http/__tests__/page.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:view": "jest src/application/services/js-services/http/__tests__/view.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:trash": "jest src/application/services/js-services/http/__tests__/trash.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:publish": "jest src/application/services/js-services/http/__tests__/publish.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:template": "jest src/application/services/js-services/http/__tests__/template.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:invitation": "jest src/application/services/js-services/http/__tests__/invitation.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:collab": "jest src/application/services/js-services/http/__tests__/collab.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:subscription": "jest src/application/services/js-services/http/__tests__/subscription.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:file-import": "jest src/application/services/js-services/http/__tests__/file-import.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api:quick-note": "jest src/application/services/js-services/http/__tests__/quick-note.integration.test.ts --no-coverage --maxWorkers=1",
"test:http-api": "jest src/application/services/js-services/http/__tests__/*.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:coverage": "jest src/application/services/js-services/http/__tests__/*.integration.test.ts --coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:auth": "jest src/application/services/js-services/http/__tests__/auth.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:workspace": "jest src/application/services/js-services/http/__tests__/workspace.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:user-profile": "jest src/application/services/js-services/http/__tests__/user-profile.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:page": "jest src/application/services/js-services/http/__tests__/page.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:view": "jest src/application/services/js-services/http/__tests__/view.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:trash": "jest src/application/services/js-services/http/__tests__/trash.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:publish": "jest src/application/services/js-services/http/__tests__/publish.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:template": "jest src/application/services/js-services/http/__tests__/template.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:invitation": "jest src/application/services/js-services/http/__tests__/invitation.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:collab": "jest src/application/services/js-services/http/__tests__/collab.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:subscription": "jest src/application/services/js-services/http/__tests__/subscription.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:file-import": "jest src/application/services/js-services/http/__tests__/file-import.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:http-api:quick-note": "jest src/application/services/js-services/http/__tests__/quick-note.integration.test.ts --no-coverage --maxWorkers=1 --testPathIgnorePatterns=/node_modules/",
"test:components:coverage": "cross-env COVERAGE=true cypress run --component --browser chrome --headless",
"test:cy": "cypress run",
"test:cy:chrome": "cypress run --browser chrome --headed",