@@ -57,6 +57,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
5757 . then ( async ( config ) => {
5858 expect ( config ) . toEqual < CollectionConfig > ( {
5959 name : collectionName ,
60+ description : undefined ,
6061 generative : {
6162 name : 'generative-cohere' ,
6263 config : { } ,
@@ -85,6 +86,8 @@ describe('Journey testing of the client using a WCD cluster', () => {
8586 {
8687 name : 'name' ,
8788 dataType : 'text' ,
89+ description : undefined ,
90+ nestedProperties : undefined ,
8891 indexFilterable : true ,
8992 indexInverted : false ,
9093 indexRangeFilters : false ,
@@ -100,6 +103,8 @@ describe('Journey testing of the client using a WCD cluster', () => {
100103 {
101104 name : 'age' ,
102105 dataType : 'int' ,
106+ description : undefined ,
107+ nestedProperties : undefined ,
103108 indexFilterable : true ,
104109 indexInverted : false ,
105110 indexRangeFilters : false ,
@@ -115,6 +120,8 @@ describe('Journey testing of the client using a WCD cluster', () => {
115120 {
116121 name : 'location' ,
117122 dataType : 'geoCoordinates' ,
123+ description : undefined ,
124+ nestedProperties : undefined ,
118125 indexFilterable : true ,
119126 indexInverted : false ,
120127 indexRangeFilters : false ,
@@ -130,6 +137,8 @@ describe('Journey testing of the client using a WCD cluster', () => {
130137 {
131138 name : 'dateOfBirth' ,
132139 dataType : 'date' ,
140+ description : undefined ,
141+ nestedProperties : undefined ,
133142 indexFilterable : true ,
134143 indexInverted : false ,
135144 indexRangeFilters : false ,
@@ -165,6 +174,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
165174 } ,
166175 vectorizers : {
167176 default : {
177+ properties : undefined ,
168178 vectorizer : {
169179 name : 'text2vec-cohere' ,
170180 config : {
@@ -182,7 +192,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
182192 dynamicEfFactor : 8 ,
183193 ef : - 1 ,
184194 efConstruction : 128 ,
185- filterStrategy : 'sweeping ' ,
195+ filterStrategy : 'acorn ' ,
186196 flatSearchCutoff : 40000 ,
187197 maxConnections : ( await client . getWeaviateVersion ( ) . then ( ( ver ) => ver . isLowerThan ( 1 , 26 , 0 ) ) )
188198 ? 64
0 commit comments