test-todomvc-using-app-actions
test-todomvc-using-app-actions copied to clipboard
Example Cypress tests going from page objects to app actions
test-todomvc-using-app-actions
Example Cypress tests going from page objects to app actions
Read blog post Stop using Page Objects and Start using App Actions and Convert Cypress Specs from JavaScript to TypeScript.
Steps
Each step is a Git tag. You can check out particular tag, install dependencies and run application and tests. Usually it would be:
git checkout <tag>
npm install
npm start
# from another terminal
npm run cypress
00-startjust TodoMVC application running atlocalhost:888801-first-testadds Cypress and first end-to-end test in spec.js02-testsbrings a lot of tests from cypress-example-todomvc to spec.js. All tests work through UI (page), sometimes using custom commands defined in cypress/support/commands.js03-page-objectdrives app via page object todo.page.js04-app-actionscontrols application by mostly directly calling the model instance directly to avoid always going through the page.05-typesadds TypeScript model interface so our tests know the app actions they can trigger06-splitsplits all tests into multiple spec files.07-grepadded tags and the cypress-grep plugin.08-tagstags the features and creates the ways to run CircleCI and GitHub Actions by selecting the tags to run.09-regressiontags some tests as@regressionand updates the CI workflows.10-typescriptshows all specs written in TypeScript and passing the static types check.11-config-tsmovescypress.config.jsto TypeScript
Tests
All tests are in folder cypress/integration. Common test settings are in cypress.json file.
Workflows
This repo shows how to use manual workflows to select the tests to run.

- repeat-test.yml lets you run a test N times by entering part of the test's title
- repeat-tag.yml lets you run all tests tagged with specific tag
- repeat-spec.yml lets you repeat the same spec multiple times
Blog posts
- Stop using Page Objects and Start using App Actions
- How To Tag And Run End-to-End Tests
- Convert Cypress Specs from JavaScript to TypeScript
IntelliSense
In the application code js/app.jsx we set window.model = ... to expose our model instance for app actions to work. If we use TypeScript check via // @ts-check directive, we need to "tell" TS compiler that there is a new property model on the global window object. We can do this by writing file cypress/integration/model.d.ts with interface definition for TodoModel and window update. Something like this
interface TodoModel {
todos: unknown[]
addTodo(...todos: string[])
// more methods
}
// During tests there we set "window.model" property
// now cy.window() returns Window instance with
// the "model" property that has TodoModel interface
interface Window {
model: TodoModel
}
From our JavaScript spec files, we need to load this model.d.ts file, and we can do this using special /// <reference> comment.
// type definitions for Cypress object "cy"
/// <reference types="cypress" />
// type definition for out TodoModel
/// <reference path='./model.d.ts' />
// @ts-check
Now whenever you use cy.window().its('model') command, IntelliSense will correctly suggest the "model" property.

And you can invoke the right methods on the window.model

Read more about intelligent code completion in Cypress.