Skip to content

Commit c8b6fe6

Browse files
committed
test(cypress): expand cypress:run:docker specPattern to cover all E2E tests
Changed specPattern from 'cypress/e2e/docker/**' to 'cypress/e2e/**' so the Docker Cypress suite picks up all test files, not just the docker/ subdirectory. This ensures new test files are included in CI.
1 parent 486e23b commit c8b6fe6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml,css,scss}\" --ignore-path .gitignore --config ./.prettierrc",
7474
"gen-schema-doc": "node ./scripts/doc-schema.js",
7575
"cypress:run": "cypress run",
76-
"cypress:run:docker": "cypress run --config specPattern='cypress/e2e/docker/**/*.cy.{js,ts}'",
76+
"cypress:run:docker": "cypress run --config specPattern='cypress/e2e/**/*.cy.{js,ts}'",
7777
"cypress:open": "cypress open",
7878
"generate-config-types": "quicktype --src-lang schema --lang typescript --out src/config/generated/config.ts --top-level GitProxyConfig config.schema.json && ts-node scripts/add-banner.ts src/config/generated/config.ts && prettier --write src/config/generated/config.ts"
7979
},

0 commit comments

Comments
 (0)