From c9ed423705d967bb3753503ff65c8a4cd592217f Mon Sep 17 00:00:00 2001 From: Raphael Darley Date: Mon, 18 Sep 2023 16:12:58 +0100 Subject: [PATCH] remove flaky rocksdb test (#9) --- __test__/index.spec.mjs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/__test__/index.spec.mjs b/__test__/index.spec.mjs index 9494717..7709362 100644 --- a/__test__/index.spec.mjs +++ b/__test__/index.spec.mjs @@ -8,12 +8,6 @@ test('Connect in-memory SurrealDB instance', async t => { t.pass(); }) -test.failing('Connect with rocksdb file', async t => { - const db = new Surreal(); - await db.connect(`rocksdb://${process.cwd()}/test.db`); - t.pass(); -}) - test('set ns/db', async t => { { const db = new Surreal();