Skip to content

Commit 8909b12

Browse files
committed
Add second property to test to verify not updating the descr
1 parent dae085a commit 8909b12

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/collections/config/integration.test.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,10 @@ describe('Testing of the collection.config namespace', () => {
520520
name: 'testProp',
521521
dataType: 'text',
522522
},
523+
{
524+
name: 'testProp2',
525+
dataType: 'text',
526+
},
523527
],
524528
vectorizers: weaviate.configure.vectorizer.none(),
525529
});
@@ -556,6 +560,18 @@ describe('Testing of the collection.config namespace', () => {
556560
nestedProperties: undefined,
557561
tokenization: 'word',
558562
},
563+
{
564+
name: 'testProp2',
565+
dataType: 'text',
566+
description: undefined,
567+
indexRangeFilters: false,
568+
indexSearchable: true,
569+
indexFilterable: true,
570+
indexInverted: false,
571+
vectorizerConfig: undefined,
572+
nestedProperties: undefined,
573+
tokenization: 'word',
574+
},
559575
]);
560576
expect(config.generative).toBeUndefined();
561577
expect(config.reranker).toBeUndefined();

0 commit comments

Comments
 (0)