Skip to content

Commit afb2dc2

Browse files
committed
Add missing isAura check
1 parent 87993e4 commit afb2dc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e_tests/integration/multi-db.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1919
*/
2020

21-
import { isEnterpriseEdition } from '../support/utils'
21+
import { isAura, isEnterpriseEdition } from '../support/utils'
2222

2323
/* global Cypress, cy, expect, before */
2424

@@ -145,7 +145,7 @@ describe('Multi database', () => {
145145
cy.executeCommand(':use system')
146146
})
147147

148-
if (Cypress.config('serverVersion') >= 4.4) {
148+
if (Cypress.config('serverVersion') >= 4.4 && !isAura()) {
149149
it('lists aliases with :dbs command', () => {
150150
const password = Cypress.config('password')
151151
cy.connect('neo4j', password)

0 commit comments

Comments
 (0)