Skip to content

Commit b611283

Browse files
committed
fix broken e2e tests
1 parent 1cacc3f commit b611283

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e_tests/integration/multistatements.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('Multi statements', () => {
7474
cy.get('[data-testid="frameCommand"]', { timeout: 10000 })
7575
.first()
7676
.should('contain', validQuery)
77-
cy.get('[data-testid="frameStatusbar"]', { timeout: 10000 })
77+
cy.get('[data-testid="frameContents"]', { timeout: 10000 })
7878
.first()
7979
.should('contain', 'Error')
8080

e2e_tests/integration/params.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ function runTests () {
6767
// it(':param x => {prop: 1} multi line', () => {
6868
// Set param
6969
cy.executeCommand(':clear')
70-
setParamQ = `:param x => {
71-
prop: 1
70+
setParamQ = `:param [x] => {
71+
RETURN {{}prop: 1} AS x
7272
}`
7373
cy.executeCommand(setParamQ)
7474
cy.resultContains('"prop": 1')

0 commit comments

Comments
 (0)