Skip to content

Commit af87430

Browse files
committed
Skip test for <1.25.0
1 parent ee53f54 commit af87430

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/collections/config/integration.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,11 @@ describe('Testing of the collection.config namespace', () => {
625625
expect(config.vectorizers.default.vectorizer.name).toEqual('none');
626626
});
627627

628-
it.only('should be able to update the generative & reranker configs of a collection', async () => {
628+
it('should be able to update the generative & reranker configs of a collection', async () => {
629+
if ((await client.getWeaviateVersion()).isLowerThan(1, 25, 0)) {
630+
console.warn('Skipping test because Weaviate version is lower than 1.25.0');
631+
return;
632+
}
629633
const collectionName = 'TestCollectionConfigUpdateGenerative';
630634
const collection = client.collections.get(collectionName);
631635
await client.collections.create({

0 commit comments

Comments
 (0)