Skip to content

Commit

Permalink
Update Cypress integration test command and add missing querystring d…
Browse files Browse the repository at this point in the history
…ependency
  • Loading branch information
hervedombya committed Jan 6, 2025
1 parent d8af26f commit 4f39076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ jobs:
- name: Install Cypress and its dependencies
run: |
cd ui
PKGS="har-validator cypress cypress-cucumber-preprocessor cypress-wait-until @testing-library/cypress"
PKGS="har-validator cypress cypress-wait-until @testing-library/cypress querystring"
for pkg in $PKGS; do
npm install --no-save --no-package-lock --legacy-peer-deps $pkg@$(node -p \
-e "require('./package-lock.json').dependencies['$pkg'].version" \
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --ci",
"test:nowatch": "CI=true jest --env=jsdom --reporters=default --reporters=jest-junit",
"test:integration": "cypress run --spec 'cypress/integration/**/*.spec.js'",
"test:integration": "cypress run 'cypress/integration/**/*.cy.js'",
"test:e2e": "cypress run --spec 'cypress/integration/e2e/**/*.feature'",
"jest-preview": "jest-preview",
"rsstart": "rspack serve -c rspack.config.ts",
Expand Down

0 comments on commit 4f39076

Please sign in to comment.