diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abf181c0e5..b0d2f5aae1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,7 +62,7 @@ jobs: exit 0 else echo "Spec files for this container: $SPEC_FILES" - export CYPRESS_SPEC_PATTERN="$SPEC_FILES" - echo "Running Cypress with spec pattern: ${CYPRESS_SPEC_PATTERN}" + export SPEC_PATTERN="$SPEC_FILES" + echo "Running Cypress with spec pattern: ${SPEC_PATTERN}" cd frontend && npm run test:cypress-ci fi diff --git a/frontend/package.json b/frontend/package.json index 8f9edbdfef..3514b99d85 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -36,7 +36,7 @@ "test:jest:coverage": "rimraf jest-coverage && jest --silent --coverage --coverageReporters=json --coverageReporters=lcov", "test:unit": "npm run test:jest -- --silent", "test:unit-coverage": "run-s test:lint test:type-check test:jest:coverage", - "test:cypress-ci": "npx concurrently -P -k -s first \"npm run cypress:server:build && npm run cypress:server\" \"npx wait-on tcp:127.0.0.1:9001 && CY_MOCK=1 CY_WS_PORT=9002 npm run cypress:run -- --headless --project src/__tests__/cypress --spec '${CYPRESS_SPEC_PATTERN}'\"", + "test:cypress-ci": "npx concurrently -P -k -s first \"npm run cypress:server:build && npm run cypress:server\" \"npx wait-on tcp:127.0.0.1:9001 && CY_MOCK=1 CY_WS_PORT=9002 npm run cypress:run -- --headless --project src/__tests__/cypress --spec '${SPEC_PATTERN}'\"", "test:cypress-ci:coverage": "npx concurrently -P -k -s first \"npm run cypress:server:build:coverage && npm run cypress:server\" \"npx wait-on tcp:127.0.0.1:9001 && npm run cypress:run:mock:coverage\"", "coverage:merge": "rimraf coverage && istanbul-merge --out coverage/coverage-final.json jest-coverage/coverage-final.json src/__tests__/cypress/coverage/coverage-final.json && nyc report --reporter html -t coverage --report-dir coverage/report && nyc report --reporter json-summary -t coverage --report-dir coverage", "cypress:open": "cypress open --project src/__tests__/cypress",