Skip to content

Commit 0f77884

Browse files
committed
Rework test
1 parent 5ec3a0e commit 0f77884

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/11-managing-indexes.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { Database } from "../databases.js";
44
import { config } from "./_config.js";
55

66
const it312 = config.arangoVersion! >= 31200 ? it : it.skip;
7-
const it31205 = config.arangoVersion! >= 31205 ? it : it.skip;
87

98
describe("Managing indexes", function () {
109
let system: Database, db: Database;
@@ -31,7 +30,9 @@ describe("Managing indexes", function () {
3130
}
3231
});
3332
describe("collection.ensureIndex#vector", () => {
34-
it31205("should create a vector index", async () => {
33+
it.skip("should create a vector index", async () => {
34+
// Available in ArangoDB 3.12.4+.
35+
// Only enabled with the --experimental-vector-index startup option.
3536
const data = [
3637
{embedding: [1, 2, 3]},
3738
{embedding: [1, 2, 3]},

0 commit comments

Comments
 (0)