Skip to content

Commit 93b557e

Browse files
committed
tests
1 parent d3d793d commit 93b557e

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

packages/compass-crud/src/stores/crud-store.spec.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ const mockCollection = {
134134
document_count: 10,
135135
free_storage_size: 10,
136136
storage_size: 20,
137+
index_details: {},
137138
fetchMetadata() {
138139
return Promise.resolve(defaultMetadata);
139140
},
@@ -334,6 +335,7 @@ describe('store', function () {
334335
avg_document_size: 1,
335336
document_count: 10,
336337
free_storage_size: 10,
338+
index_details: {},
337339
storage_size: 20,
338340
},
339341
});
@@ -2255,7 +2257,7 @@ describe('store', function () {
22552257
{
22562258
serverVersion: '5.0.0',
22572259
isDataLake: false,
2258-
isTimeSeries: false,
2260+
defaultSort: undefined,
22592261
},
22602262
'test.test',
22612263
{}
@@ -2273,7 +2275,7 @@ describe('store', function () {
22732275
{
22742276
serverVersion: '4.0.0',
22752277
isDataLake: false,
2276-
isTimeSeries: false,
2278+
defaultSort: undefined,
22772279
},
22782280
'test.test',
22792281
{}
@@ -2289,7 +2291,7 @@ describe('store', function () {
22892291
{
22902292
serverVersion: '4.0.0',
22912293
isDataLake: false,
2292-
isTimeSeries: false,
2294+
defaultSort: undefined,
22932295
},
22942296
'test.test',
22952297
{}
@@ -2307,7 +2309,7 @@ describe('store', function () {
23072309
{
23082310
serverVersion: '5.0.0',
23092311
isDataLake: true,
2310-
isTimeSeries: false,
2312+
defaultSort: undefined,
23112313
},
23122314
'test.test',
23132315
{}
@@ -2326,7 +2328,7 @@ describe('store', function () {
23262328
{
23272329
serverVersion: '5.0.0',
23282330
isDataLake: false,
2329-
isTimeSeries: false,
2331+
defaultSort: undefined,
23302332
},
23312333
'test.test',
23322334
{}
@@ -2344,7 +2346,7 @@ describe('store', function () {
23442346
{
23452347
serverVersion: '5.0.0',
23462348
isDataLake: false,
2347-
isTimeSeries: false,
2349+
defaultSort: undefined,
23482350
},
23492351
'test.test',
23502352
{},
@@ -2371,7 +2373,7 @@ describe('store', function () {
23712373
{
23722374
serverVersion: '5.0.0',
23732375
isDataLake: false,
2374-
isTimeSeries: false,
2376+
defaultSort: undefined,
23752377
},
23762378
'test.test',
23772379
{}
@@ -2396,7 +2398,7 @@ describe('store', function () {
23962398
{
23972399
serverVersion: '5.0.0',
23982400
isDataLake: false,
2399-
isTimeSeries: false,
2401+
defaultSort: undefined,
24002402
},
24012403
'test.test',
24022404
{}
@@ -2417,7 +2419,7 @@ describe('store', function () {
24172419
{
24182420
serverVersion: '3.0.0',
24192421
isDataLake: true,
2420-
isTimeSeries: false,
2422+
defaultSort: undefined,
24212423
},
24222424
'test.test',
24232425
{}

0 commit comments

Comments
 (0)