diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e39bdb..f5d180c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,12 +17,12 @@ test: - "npm run lint:eslint" - "npm run lint:typescript" - "npm run test" - artifacts: - paths: - - "coverage/" - reports: - coverage_report: - coverage_format: "cobertura" - path: "coverage/cobertura-coverage.xml" - junit: "junit.xml" - coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' + # artifacts: + # paths: + # - "coverage/" + # reports: + # coverage_report: + # coverage_format: "cobertura" + # path: "coverage/cobertura-coverage.xml" + # junit: "junit.xml" + # coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' diff --git a/jest.config.json b/jest.config.json index c950dff..3e6bedb 100644 --- a/jest.config.json +++ b/jest.config.json @@ -5,7 +5,7 @@ "fakeTimers": { "enableGlobally": true }, - "collectCoverage": true, + "collectCoverage": false, "coverageDirectory": "coverage", "coverageReporters": ["text", "text-summary", "cobertura"], "collectCoverageFrom": [ diff --git a/package.json b/package.json index ebff656..e6635c7 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore", "lint:typescript": "tsc --noEmit", "lint:staged": "lint-staged", - "test": "jest --coverage --reporters=default --reporters=jest-junit", + "test": "jest --reporters=default --reporters=jest-junit", "supabase": "supabase --workdir \"./infrastructure/repositories\"", "postinstall": "husky" },