43 lines
1.5 KiB
Markdown
43 lines
1.5 KiB
Markdown
# Angular Nx Tutorial - Step 2: Add E2E Tests
|
|
|
|
<iframe loading="lazy" width="560" height="315" src="https://www.youtube.com/embed/owRAO75DIR4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture; fullscreen"></iframe>
|
|
|
|
By default, Nx uses [Cypress](/cypress/overview) to run E2E tests.
|
|
|
|
**Open `apps/todos-e2e/src/support/app.po.ts`.** It's a page object file that contains helpers for querying the page.
|
|
|
|
**Add the following two helpers:**
|
|
|
|
```typescript
|
|
export const getTodos = () => cy.get('li.todo');
|
|
export const getAddTodoButton = () => cy.get('button#add-todo');
|
|
```
|
|
|
|
**Next, update `apps/todos-e2e/src/integration/app.spec.ts`.**
|
|
|
|
```typescript
|
|
import { getAddTodoButton, getTodos } from '../support/app.po';
|
|
|
|
describe('TodoApps', () => {
|
|
beforeEach(() => cy.visit('/'));
|
|
|
|
it('should display todos', () => {
|
|
getTodos().should((t) => expect(t.length).equal(2));
|
|
getAddTodoButton().click();
|
|
getTodos().should((t) => expect(t.length).equal(3));
|
|
});
|
|
});
|
|
```
|
|
|
|
This is a simple example of an E2E test, but it suffices for the purposes of this tutorial.
|
|
|
|
If you have not done so already, stop the `npx nx serve` command and run `npx nx e2e todos-e2e --watch`.
|
|
|
|
A UI opens. Click the button in the top right corner that says "Run 1 integration spec". Keep the E2E tests running.
|
|
|
|
As you progress through the tutorial, you work on making these E2E tests pass.
|
|
|
|
## What's Next
|
|
|
|
- Continue to [Step 3: Display Todos](/angular-tutorial/03-display-todos)
|