Skip to content

Commit 7360758

Browse files
author
Eric Smyth
committed
Update cypress test
1 parent 4809b7a commit 7360758

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

e2e/cypress/integration/tests/actions.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
context('Actions', () => {
44
beforeEach(() => {
55
cy.visit('http://localhost:8000')
6-
})
6+
});
77

88
it('All + elements are clickable', () => {
9-
cy.get('.step-up').click( { multiple: true } )
9+
cy.get('.step-up').click( { multiple: true } );
1010

1111
// This gets the "first" input from the sidebar. From clicking step up,
12-
// the number of days to project should increase from default 60 to 70.
12+
// the Regional Population should increase from default 4119405 to 4219405.
1313
cy.get('input.st-al')
14-
.should('has.value', '70')
14+
.should('has.value', '4219405')
1515
})
16-
})
16+
});

0 commit comments

Comments
 (0)