Skip to content

Commit b2c1a2f

Browse files
author
mpv1989
committed
Fix test for cluster setup
1 parent 41c221b commit b2c1a2f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/10-manipulating-collections.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import { expect } from "chai";
44

55
const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30000);
66

7-
describe("Manipulating collections", () => {
7+
describe("Manipulating collections", function() {
8+
// create database takes 11s in a standard cluster
9+
this.timeout(20000);
10+
811
let name = `testdb_${Date.now()}`;
912
let db: Database;
1013
let collection: DocumentCollection;

0 commit comments

Comments
 (0)