├── .all-contributorsrc ├── .github ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── markdown-lint.yml ├── .gitignore ├── .markdownlint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json └── pages ├── core-concepts ├── interacting-with-elements.md ├── introduction-to-cypress.md ├── variables-and-aliases.md └── writing-and-organizing-tests.md ├── dashboard ├── gitlab-integration.md ├── introduction.md └── projects.md ├── getting-started ├── installing-cypress.md ├── testing-your-app.md └── writing-your-first-test.md ├── overview ├── key-differences.md └── why-cypress.md └── tooling └── typescript.md /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/.github/workflows/markdown-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/package.json -------------------------------------------------------------------------------- /pages/core-concepts/interacting-with-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/core-concepts/interacting-with-elements.md -------------------------------------------------------------------------------- /pages/core-concepts/introduction-to-cypress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/core-concepts/introduction-to-cypress.md -------------------------------------------------------------------------------- /pages/core-concepts/variables-and-aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/core-concepts/variables-and-aliases.md -------------------------------------------------------------------------------- /pages/core-concepts/writing-and-organizing-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/core-concepts/writing-and-organizing-tests.md -------------------------------------------------------------------------------- /pages/dashboard/gitlab-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/dashboard/gitlab-integration.md -------------------------------------------------------------------------------- /pages/dashboard/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/dashboard/introduction.md -------------------------------------------------------------------------------- /pages/dashboard/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/dashboard/projects.md -------------------------------------------------------------------------------- /pages/getting-started/installing-cypress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/getting-started/installing-cypress.md -------------------------------------------------------------------------------- /pages/getting-started/testing-your-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/getting-started/testing-your-app.md -------------------------------------------------------------------------------- /pages/getting-started/writing-your-first-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/getting-started/writing-your-first-test.md -------------------------------------------------------------------------------- /pages/overview/key-differences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/overview/key-differences.md -------------------------------------------------------------------------------- /pages/overview/why-cypress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/overview/why-cypress.md -------------------------------------------------------------------------------- /pages/tooling/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/cypress-docs-pt-br/HEAD/pages/tooling/typescript.md --------------------------------------------------------------------------------