Skip to content

Commit 90afbd4

Browse files
committed
Turn off test for MMFiles
1 parent 9d93dcd commit 90afbd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/23-aql-queries-stream.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const ARANGO_VERSION = Number(
77
process.env.ARANGO_VERSION || process.env.ARANGOJS_DEVEL_VERSION || 30400
88
);
99
const describe34 = ARANGO_VERSION >= 30400 ? describe : describe.skip;
10+
const itRdb = process.env.ARANGO_STORAGE_ENGINE !== "mmfiles" ? it : it.skip;
1011

1112
describe34("AQL Stream queries", function() {
1213
let name = `testdb_${Date.now()}`;
@@ -97,7 +98,7 @@ describe34("AQL Stream queries", function() {
9798
);
9899
expect(count).to.equal(25 * 1000);
99100
});
100-
it("can do writes and reads", async () => {
101+
itRdb("can do writes and reads", async () => {
101102
let collection = db.collection(cname);
102103
let readQ = aql`FOR doc in ${collection} RETURN doc`;
103104
let writeQ = aql`FOR i in 1..1000 LET y = SLEEP(1) INSERT {forbidden: i} INTO ${collection}`;

0 commit comments

Comments
 (0)