From 9a0cd8a3d278dca86cd01aecf9dc3dbb45a75880 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 15 Nov 2025 22:57:49 +0800 Subject: [PATCH] chore: fix ci --- package.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index ad1c77c4..58425fc0 100644 --- a/package.json +++ b/package.json @@ -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",