Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable tests #83

Merged
merged 5 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Enable and fix cypress tests

## [0.11.0] - 2023-11-06
+ ### Fixed
+ - removing the added holiday day, and included the locale sent in the intl.
Expand Down
4 changes: 2 additions & 2 deletions cy-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ strategy:
- cypress/integration/2.2.2-add_multiple_pickup_points_via_csv.spec.js
# add pickup points and order the product
verifyPickupPoints:
enabled: false
enabled: true
sendDashboard: true
hardTries: 4
stopOnFail: false
Expand All @@ -101,7 +101,7 @@ strategy:
- cypress/integration/2.2.2-add_multiple_pickup_points_via_csv.spec.js
# inactive pickup points should not be shown
inactivePickupPoints:
enabled: false
enabled: true
sendDashboard: true
hardTries: 3
stopOnFail: false
Expand Down
2 changes: 1 addition & 1 deletion cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Cypress.Commands.add('getPickupPointItem', () => {
})

Cypress.Commands.add('visitStore', () => {
cy.intercept('**/event-api/v1/productusqa/event').as('events')
cy.intercept('**/event-api/v1/*/event').as('events')
cy.visit('/api/io/stores')
cy.wait('@events')

Expand Down
Loading