0.3.0 • Published 3 years ago
cypress-ct-qwik
Licence
—
Version
0.3.0
Deps
1
Size
12 kB
Vulns
0
Weekly
0
Cypress Qwik plugin
Table of Contents
- Installation
- Configuring Cypress
- Usage
- Contributing
- Code Of Conduct
- Contributors
- Related Links
- License
Installation
npm install -D cypress-ct-qwik
Configuring Cypress
Run cypress (in watch mode) after installation
Follow the configuration wizard
Add
addQwikLoaderto thecypress/support/component.tsfile -
// component.ts
import { addQwikLoader } from 'cypress-ct-qwik';
addQwikLoader();
Pretty easy...
Usage
// some-test.cy.ts
import MyComp from './my-comp';
describe(`Qwik Component Test`, () => {
it('should find my link', () => {
cy.mount(<MyComp />);
cy.contains('myLink').should('exist');
});
});
Contributing
Want to contribute? Yayy!
Please read and follow our Contributing Guidelines to learn what are the right steps to take before contributing your time, effort and code.
Thanks
Code Of Conduct
Be kind to each other and please read our code of conduct.
Contributors
Thanks goes to these wonderful people (emoji key):
Shai Reznik |
Jordan Powell |
This project follows the all-contributors specification. Contributions of any kind welcome!
Related Links
License
MIT