-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathvisual-testing.spec.js
44 lines (39 loc) · 1.02 KB
/
visual-testing.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/// <reference types="Cypress" />
context('Visual testing', () => {
before(() => {
cy.visit('/');
});
afterEach(() => {
cy.eyesClose();
});
it('shows the landing page', () => {
cy.wait(1000);
cy.eyesOpen({
appName: 'Vue Material',
testName: 'Shows the landing page',
browser: { width: 800, height: 600 }
});
cy.eyesCheckWindow('Landing page');
});
it('shows the getting started page', () => {
cy.get('[data-cy=gettingStarted]').click();
cy.wait(1000);
cy.eyesOpen({
appName: 'Vue Material',
testName: 'Shows the getting started page',
browser: { width: 800, height: 600 }
});
cy.eyesCheckWindow('Getting Started page');
});
it('shows the components page', () => {
cy.go('back');
cy.get('[data-cy=components]').click();
cy.wait(1000);
cy.eyesOpen({
appName: 'Vue Material',
testName: 'Shows the components page',
browser: { width: 800, height: 600 }
});
cy.eyesCheckWindow('Component page');
});
});