├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .husky └── commit-msg ├── .versionrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── cypress.config.ts ├── cypress ├── e2e │ ├── hooks.cy.ts │ └── spec.cy.ts ├── index.html ├── support │ └── e2e.ts └── tsconfig.json ├── images ├── error.png ├── screenshot.png ├── sections.png └── terminal.png ├── package.json ├── src ├── addStyles.ts ├── hooks.ts ├── index.ts ├── steps │ ├── section.ts │ ├── step.ts │ └── todo.ts └── types.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/.versionrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']} 2 | -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/hooks.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/cypress/e2e/hooks.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /cypress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/cypress/index.html -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- 1 | import '../../dist/index' 2 | -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/images/error.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/images/sections.png -------------------------------------------------------------------------------- /images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/images/terminal.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/package.json -------------------------------------------------------------------------------- /src/addStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/addStyles.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/steps/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/steps/section.ts -------------------------------------------------------------------------------- /src/steps/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/steps/step.ts -------------------------------------------------------------------------------- /src/steps/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/steps/todo.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filiphric/cypress-plugin-steps/HEAD/tsconfig.json --------------------------------------------------------------------------------