@shellygo/cypress-test-utils / Modules
cypress-test-utils
Cypress helpers to control your UI components that work in all test levels. From component tests, through integration tests to e2e tests, for all frameworks: angular, lit, react. Making TDD fun in the modular UI area.
CypressHelper makes it saner to write UI testing. It enables creating component drivers that will work on all testing levels (component, integration, e2e).
Installation
This library provides an API to interact with UI elements - CypressHelper that combines the common features.
To add it to your repo use
npm i -D @shellygo/cypress-test-utils cypress
or
yarn add -D @shellygo/cypress-test-utils cypress
Concept
Nowadays, much of the software code is generated and developers increasingly take on the role of code reviewers, Test-Driven Development (TDD) has become more crucial than ever. Understanding well-written, human-readable test code is easier than deciphering complex production code. The methodology involves first generating the tests, reviewing them to ensure requirements are met, then generating code until all tests pass, followed by refactoring. This process relies heavily on the readability and clarity of the test code. The cypress helper was designed with this mindset. AI-ready helper that can be used by AI code assistants to generate human-readable tests based on acceptance criteria. See this set of useful prompts that can help developers describe the requirements clearly, enabling the assistant to generate a robust safety net of quality checks.
The pattern and clarity of the test code also help AI systems pinpoint what went wrong during failures. Another powerful application is identifying uncovered areas or use cases. By analyzing production defects and service requests (SRs), AI can detect gaps in test coverage and generate the missing test cases.
Also, by leveraging the AI-ready testing foundations, developers and automation systems can now select relevant test subsets, with the assistance of AI, reducing wait times and boosting productivity. As the test code is written in a human-readable format, it serves as a form of documentation. This dual purpose not only helps developers understand the system behavior and requirements but also enables automated document generation. Last but not least, by structuring tests to reflect acceptance criteria and expected outcomes, we create a living specification that can be parsed and transformed into formal documentation artifacts.
Cypress Helpers can help you develop tests faster.
CypressHelper is designed to be used in any test level, and holds common methods used in Cypress tests
Component Drivers
Testing UI is hard. There are many reasons for that, but a big one relies in the fact that unlike functions or services, where the API is clearly defined,
when dealing with graphical user interfaces, it's up for the developer to transform it into an "API" for testing purposes.
Back in the days, PageObjects helped mitigate this fact, but once the world moved to modular components,
our test code quality degraded and became bloated with repetition and lack of abstraction.
Component drivers are just like page objects, but for your components.
Just like page objects, this is merely a pattern, and is not coupled to a specific implementation.
However, using CypressHelper as the basis for your component drivers will help you leverage years of trial and error and be able to fully re-use your drivers across testing levels.
This allows you to confidently write tests that use your actual implementation and keep focusing on the "what" and not the "how"
Component Drivers can be used as building blocks for integration and E2E test driver, using Driver Composition
Philosophy
CypressHelper aims to provide a framework agnostic (angular, lit, react) API for what a manual tester can do. This means that the API will not focus on implementation, but on the actual action a user would take. For example, a user doesn't mouseUp, he/she hovers.
Documentation
Examples
In the examples repo you can find 3 small apps; an angular app, a lit app and a react app. Each app contains a driver that uses helpers, component tests, integration tests and e2e tests. As you can see, all test levels use the same driver, meaning that if the feature's implementation changes, you'll need to change the driver alone, not the tests.
Framework Spesific Information
Using Shadow DOM
When using
CypressHelper will look for the assignedNode to retrieve the text, given that the selector of the slot has a '-slot' suffix.
You may change this behaviour by overriding the default values when creating CypressHelper.
Angular
When mounting an angular component, autoSpyOutputs is set to true, meaning all event emitters are automatically spied on and may be accessed during a test using helper.get.spy("<EventEmitterName>")
Developing
- Set up the repo -
yarn - Build the project -
npm run build - Running tests -
npm run cy:run