From 145fa0b9ca85bafcf714530f38316475c4c6fd80 Mon Sep 17 00:00:00 2001 From: mpv1989 Date: Tue, 14 Aug 2018 09:49:42 +0200 Subject: [PATCH] Disable view tests for ArangoDB 3.3 --- src/test/24-accessing-views.ts | 4 +++- src/test/25-view-metadata.ts | 5 ++++- src/test/26-manipulating-views.ts | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/test/24-accessing-views.ts b/src/test/24-accessing-views.ts index de62bd949..18ae3a8f3 100644 --- a/src/test/24-accessing-views.ts +++ b/src/test/24-accessing-views.ts @@ -3,8 +3,10 @@ import { Database } from "../arangojs"; import { ArangoSearchView } from "../view"; const range = (n: number): number[] => Array.from(Array(n).keys()); +const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30400); +const describe34 = ARANGO_VERSION >= 30400 ? describe : describe.skip; -describe("Accessing views", function() { +describe34("Accessing views", function() { // create database takes 11s in a standard cluster this.timeout(20000); diff --git a/src/test/25-view-metadata.ts b/src/test/25-view-metadata.ts index 7474eb18e..1b3947501 100644 --- a/src/test/25-view-metadata.ts +++ b/src/test/25-view-metadata.ts @@ -2,7 +2,10 @@ import { expect } from "chai"; import { Database } from "../arangojs"; import { ArangoSearchView } from "../view"; -describe("View metadata", function() { +const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30400); +const describe34 = ARANGO_VERSION >= 30400 ? describe : describe.skip; + +describe34("View metadata", function() { // create database takes 11s in a standard cluster this.timeout(20000); diff --git a/src/test/26-manipulating-views.ts b/src/test/26-manipulating-views.ts index ade19d62f..c58bc9075 100644 --- a/src/test/26-manipulating-views.ts +++ b/src/test/26-manipulating-views.ts @@ -3,8 +3,9 @@ import { Database } from "../arangojs"; import { ArangoSearchView } from "../view"; const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30400); +const describe34 = ARANGO_VERSION >= 30400 ? describe : describe.skip; -describe("Manipulating views", function() { +describe34("Manipulating views", function() { // create database takes 11s in a standard cluster this.timeout(20000);