We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c221b commit b2c1a2fCopy full SHA for b2c1a2f
src/test/10-manipulating-collections.ts
@@ -4,7 +4,10 @@ import { expect } from "chai";
4
5
const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30000);
6
7
-describe("Manipulating collections", () => {
+describe("Manipulating collections", function() {
8
+ // create database takes 11s in a standard cluster
9
+ this.timeout(20000);
10
+
11
let name = `testdb_${Date.now()}`;
12
let db: Database;
13
let collection: DocumentCollection;
0 commit comments