{"id":19185496,"url":"https://github.com/qwikifiers/cypress-qwik","last_synced_at":"2026-04-01T20:43:10.715Z","repository":{"id":65909306,"uuid":"601841212","full_name":"qwikifiers/cypress-qwik","owner":"qwikifiers","description":"Cypress component testing plugin for Qwik","archived":false,"fork":false,"pushed_at":"2023-03-30T21:18:50.000Z","size":34478,"stargazers_count":12,"open_issues_count":3,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T09:33:25.116Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qwikifiers.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-02-14T23:53:46.000Z","updated_at":"2025-04-17T09:38:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"52d63e37-89e2-468e-b3c9-3a088c3295fa","html_url":"https://github.com/qwikifiers/cypress-qwik","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/qwikifiers/cypress-qwik","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qwikifiers%2Fcypress-qwik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qwikifiers%2Fcypress-qwik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qwikifiers%2Fcypress-qwik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qwikifiers%2Fcypress-qwik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qwikifiers","download_url":"https://codeload.github.com/qwikifiers/cypress-qwik/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qwikifiers%2Fcypress-qwik/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291777,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T11:10:45.005Z","updated_at":"2026-04-01T20:43:10.698Z","avatar_url":"https://github.com/qwikifiers.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cbr/\u003e\n  \u003cimg width=\"400\" src=\"./assets/cypress-qwik.png\" alt=\"Qwik loves Cypress\"\u003e\n  \u003cbr/\u003e\n  \u003cbr/\u003e\n\u003c/p\u003e\n\n\u003ch1 align='center'\u003eCypress Qwik plugin\u003c/h1\u003e\n\n\u003cdiv align='center'\u003e\n  The cypress component testing plugin for \u003ca href='https://github.com/BuilderIO/qwik'\u003eQwik\u003c/a\u003e\n  \u003cbr\u003e\u003cbr\u003e\n\n  \u003ca href='https://img.shields.io/npm/v/cypress-ct-qwik?label=npm%20version'\u003e\n  \u003cimg src='https://img.shields.io/npm/v/cypress-ct-qwik?label=npm%20version' alt='cypress-ct-qwik npm'\u003e\n  \u003c/a\u003e\n  \u003ca href='https://opensource.org/licenses/MIT'\u003e\n  \u003cimg src='https://img.shields.io/badge/License-MIT-green.svg' alt='MIT'\u003e\n  \u003c/a\u003e\n  \u003ca href='#contributors'\u003e\n  \u003cimg src='https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square' alt='All Contributors'\u003e\n  \u003c/a\u003e\n\n\u003c/div\u003e\n\u003cbr\u003e\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Configuring Cypress](#configuring-cypress)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [Code Of Conduct](#code-of-conduct)\n- [Contributors](#contributors)\n- [Related Links](#related-links)\n- [License](#license)\n\n## Installation\n\n```console\nnpm install -D cypress-ct-qwik\n```\n\n## Configuring Cypress\n\n1. Run cypress (in watch mode) after installation\n\n2. Follow the configuration wizard\n\n3. Add `addQwikLoader` to the `cypress/support/component.ts` file -\n\n```ts\n// component.ts\nimport { addQwikLoader } from 'cypress-ct-qwik';\naddQwikLoader();\n\n```\n\nPretty easy... 😊\n\n## Usage\n\n```ts\n// some-test.cy.ts\n\nimport MyComp from './my-comp';\n\ndescribe(`Qwik Component Test`, () =\u003e {\n  it('should find my link', () =\u003e {\n    cy.mount(\u003cMyComp /\u003e);\n\n    cy.contains('myLink').should('exist');\n  });\n});\n```\n\n\u003cbr/\u003e\n\n## Contributing\n\nWant to contribute? Yayy! 🎉\n\nPlease read and follow our [Contributing Guidelines](CONTRIBUTING.md) to learn what are the right steps to take before contributing your time, effort and code.\n\nThanks 🙏\n\n\u003cbr/\u003e\n\n## Code Of Conduct\n\nBe kind to each other and please read our [code of conduct](CODE_OF_CONDUCT.md).\n\n\u003cbr/\u003e\n\n## Contributors\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://hirez.io/?utm_source=github\u0026utm_medium=link\u0026utm_campaign=cypress-qwik\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/1430726?v=4?s=100\" width=\"100px;\" alt=\"Shai Reznik\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eShai Reznik\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/qwikifiers/cypress-qwik/commits?author=shairez\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/qwikifiers/cypress-qwik/commits?author=shairez\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"#infra-shairez\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"https://github.com/qwikifiers/cypress-qwik/commits?author=shairez\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#maintenance-shairez\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/qwikifiers/cypress-qwik/pulls?q=is%3Apr+reviewed-by%3Ashairez\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"#ideas-shairez\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/jordanpowell88\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/3605268?v=4?s=100\" width=\"100px;\" alt=\"Jordan Powell\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJordan Powell\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/qwikifiers/cypress-qwik/commits?author=jordanpowell88\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/qwikifiers/cypress-qwik/commits?author=jordanpowell88\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"#infra-jordanpowell88\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"https://github.com/qwikifiers/cypress-qwik/pulls?q=is%3Apr+reviewed-by%3Ajordanpowell88\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"#ideas-jordanpowell88\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#maintenance-jordanpowell88\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n\u003cbr/\u003e\n\n## Related Links\n\n- [Cypress-Qwik Discord](https://discord.gg/PVWUUejrez)\n- [Qwik Discord](https://qwik.builder.io/chat)\n- [Qwik Docs](https://qwik.builder.io/)\n- [Cypress Docs](https://www.cypress.io/)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqwikifiers%2Fcypress-qwik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqwikifiers%2Fcypress-qwik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqwikifiers%2Fcypress-qwik/lists"}