cypress-example-kitchensink
cypress-example-kitchensink copied to clipboard
This is an example app used to showcase Cypress.io testing.
We've had a couple people inquire about running in Concourse CI, especially with parallel runs. Would be nice to get an example. Also, collecting CI env vars in the test...
While exploring Cypress examples from the Kitchen Sink App, I noticed this unnecessary `.click()`, so I'm removing it to simplify things and avoid confusion.
[This blog post](https://glebbahmutov.com/blog/do-not-let-cypress-cache-snowball/) advisies to not use restore keys.
I have been using the same setup as the sample for Azure CI provided here. When I finally managed to get all my tests to pass in CI, the "Post-job:...
### User facing changelog This disables the ESLint [`@typescript-eslint/no-unused-vars`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-unused-vars.md) rule (the typed counterpart to ESLint's built-in `no-unused-vars`) ### Additional details The files scaffolded by Cypress create an error out of...
- Closes #492
This `.scrollTo()` times out very frequently in the kitchensink tests. Sometimes the bug shows up as a `.screenshot()` timeout after the scrollTo fails. Seems to fail mostly in CircleCI Mac,...
See https://github.com/cypress-io/cypress/issues/16653
Vue Select Element is not a select element and needs a workaround to select options. There have been some workarounds posted in [StackOverflow](https://stackoverflow.com/questions/60398735/vuetify-select-component-and-cypress). Would be nice to include an example...