├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── .DS_Store ├── fixtures │ └── example.json ├── integration │ ├── todo-actions.spec.js │ ├── todo-filtering.spec.js │ └── todo-visuals.spec.js ├── page-objects │ └── todo-page.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "watchForFileChanges": false 3 | } 4 | -------------------------------------------------------------------------------- /cypress/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/.DS_Store -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/todo-actions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/integration/todo-actions.spec.js -------------------------------------------------------------------------------- /cypress/integration/todo-filtering.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/integration/todo-filtering.spec.js -------------------------------------------------------------------------------- /cypress/integration/todo-visuals.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/integration/todo-visuals.spec.js -------------------------------------------------------------------------------- /cypress/page-objects/todo-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/page-objects/todo-page.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giltayar/testautomationu-cypress-course/HEAD/package.json --------------------------------------------------------------------------------