Open
Conversation
initial conversion of wdio tests
…enPage() command - normalize title comparisons and handle whitespace in assertions across various test cases.
- Corrected the .gitignore entry from 'plan/' to 'plans/'. - Updated build.xml to exclude 'plans/' instead of '.plan/'. - Modified Cypress configuration to specify a new spec pattern for test files. - Added a new command in package.json for running specific Cypress tests. - Enhanced various test cases to improve reliability, including timeout adjustments and normalization of title comparisons. - Removed outdated UAT test files for conferences and countries. - Refactored several test cases to use more consistent assertions and improved selectors.
- Replaced custom commands with direct Cypress assertions. - use `cy.visit()` with query parameters for better readability - Enhanced test cases for breadcrumbs and search functionality to improve clarity and consistency in assertions. - remove deprecated commands
- Clarified node version requirements to align with package.json engines. - Improved descriptions for running tests in both interactive and headless modes. - Updated test structure section to reflect the organization of specs and included legacy naming conventions for reference. - Enhanced clarity on custom commands and documentation links.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This ports the test from the original 24 wdio specs (
npm test) to cypress.none of the old tests or their dependencies have been removed yet, as requested.
It also adds actually executing the tests on CI using the
joewiz/hsg-projectcontainer.note: the e2e test run is not yet taken into account for automated releases, that still works as before.
OP#290