Skip to content

Commit

Permalink
Add missing isAura check
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarDamkjaer committed Jun 20, 2022
1 parent 87993e4 commit afb2dc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e_tests/integration/multi-db.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import { isEnterpriseEdition } from '../support/utils'
import { isAura, isEnterpriseEdition } from '../support/utils'

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

Expand Down Expand Up @@ -145,7 +145,7 @@ describe('Multi database', () => {
cy.executeCommand(':use system')
})

if (Cypress.config('serverVersion') >= 4.4) {
if (Cypress.config('serverVersion') >= 4.4 && !isAura()) {
it('lists aliases with :dbs command', () => {
const password = Cypress.config('password')
cy.connect('neo4j', password)
Expand Down

0 comments on commit afb2dc2

Please sign in to comment.