├── .github └── workflows │ ├── badges.yml │ └── ci.yml ├── .gitignore ├── README.md ├── cypress.config.js ├── cypress ├── README.md └── e2e │ └── spec.cy.js ├── package.json └── src └── index.js /.github/workflows/badges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/.github/workflows/badges.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- 1 | /// 2 | import '../..' 3 | it('works', () => {}) 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-playwright/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | console.log('Happy April 1st') 2 | --------------------------------------------------------------------------------