We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4809b7a commit 7360758Copy full SHA for 7360758
e2e/cypress/integration/tests/actions.spec.js
@@ -3,14 +3,14 @@
3
context('Actions', () => {
4
beforeEach(() => {
5
cy.visit('http://localhost:8000')
6
- })
+ });
7
8
it('All + elements are clickable', () => {
9
- cy.get('.step-up').click( { multiple: true } )
+ cy.get('.step-up').click( { multiple: true } );
10
11
// 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.
+ // the Regional Population should increase from default 4119405 to 4219405.
13
cy.get('input.st-al')
14
- .should('has.value', '70')
+ .should('has.value', '4219405')
15
})
16
-})
+});
0 commit comments