Using Cypress App Action With ngrx/store Angular Applications

1 · Gleb Bahmutov · March 10, 2024, 5 a.m.
Summary
Let's say you are writing end-to-end tests for a modern Angular application. The app is showing a list of customers, so your first test is checking if adding a customer works. You are testing the application the way the user would do it: by filling the input fields and clicking the "Save" button.e2e/src/e2e/add-customer.cy.ts1234567891011121314151617181920212223242526272829// https://github.com/bahmutov/cypress-slow-downimport { slowCypressDown } from 'cypress-slow-down';// slow each Cypress com...