@@ -3,7 +3,7 @@ import { DocumentCollection } from "../collections.js";
33import { Database } from "../databases.js" ;
44import { config } from "./_config.js" ;
55
6- const it312 = config . arangoVersion ! >= 31200 ? it : it . skip ;
6+ const it312 = config . arangoVersion ! > 31200 ? it : it . skip ;
77
88describe ( "Managing indexes" , function ( ) {
99 let system : Database , db : Database ;
@@ -30,7 +30,7 @@ describe("Managing indexes", function () {
3030 }
3131 } ) ;
3232 describe ( "collection.ensureIndex#vector" , ( ) => {
33- it . skip ( "should create a vector index" , async ( ) => {
33+ it312 ( "should create a vector index" , async ( ) => {
3434 // Available in ArangoDB 3.12.4+.
3535 // Only enabled with the --vector-index startup option.
3636 const data = Array . from ( { length : 128 } , ( _ , cnt ) => ( {
@@ -57,7 +57,7 @@ describe("Managing indexes", function () {
5757 expect ( info ) . to . have . nested . property ( "params.nLists" , 2 ) ;
5858 } ) ;
5959
60- it . skip ( "should create a vector index with storedValues" , async ( ) => {
60+ it312 ( "should create a vector index with storedValues" , async ( ) => {
6161 // Available in ArangoDB 3.12.7+.
6262 // Only enabled with the --vector-index startup option.
6363 const data = Array . from ( { length : 128 } , ( _ , cnt ) => ( {
@@ -89,7 +89,7 @@ describe("Managing indexes", function () {
8989 expect ( info ) . to . have . nested . property ( "params.nLists" , 2 ) ;
9090 } ) ;
9191
92- it . skip ( "should create a vector index with innerProduct metric" , async ( ) => {
92+ it312 ( "should create a vector index with innerProduct metric" , async ( ) => {
9393 // Available in ArangoDB 3.12.6+.
9494 // Only enabled with the --vector-index startup option.
9595 const data = Array . from ( { length : 128 } , ( _ , cnt ) => ( {
0 commit comments