Skip to content

Commit

Permalink
fix broken e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
huboneo committed Sep 4, 2019
1 parent 1cacc3f commit b611283
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e_tests/integration/multistatements.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('Multi statements', () => {
cy.get('[data-testid="frameCommand"]', { timeout: 10000 })
.first()
.should('contain', validQuery)
cy.get('[data-testid="frameStatusbar"]', { timeout: 10000 })
cy.get('[data-testid="frameContents"]', { timeout: 10000 })
.first()
.should('contain', 'Error')

Expand Down
4 changes: 2 additions & 2 deletions e2e_tests/integration/params.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ function runTests () {
// it(':param x => {prop: 1} multi line', () => {
// Set param
cy.executeCommand(':clear')
setParamQ = `:param x => {
prop: 1
setParamQ = `:param [x] => {
RETURN {{}prop: 1} AS x
}`
cy.executeCommand(setParamQ)
cy.resultContains('"prop": 1')
Expand Down

0 comments on commit b611283

Please sign in to comment.