@@ -141,6 +141,7 @@ describe("ExportsManager unit test", () => {
141
141
manager . createJSONExport ( {
142
142
input : createDummyFindCursorWithDelay ( [ { name : "Test1" } ] , 1000 ) . cursor ,
143
143
exportName : exportName1 ,
144
+ exportTitle : "Some export" ,
144
145
jsonExportFormat : "relaxed" ,
145
146
} ) ;
146
147
@@ -150,6 +151,7 @@ describe("ExportsManager unit test", () => {
150
151
manager . createJSONExport ( {
151
152
input : cursor ,
152
153
exportName : exportName2 ,
154
+ exportTitle : "Some export" ,
153
155
jsonExportFormat : "relaxed" ,
154
156
} ) ;
155
157
@@ -176,6 +178,7 @@ describe("ExportsManager unit test", () => {
176
178
manager . createJSONExport ( {
177
179
input : cursor ,
178
180
exportName,
181
+ exportTitle : "Some export" ,
179
182
jsonExportFormat : "relaxed" ,
180
183
} ) ;
181
184
// note that we do not wait for cursor close
@@ -190,6 +193,7 @@ describe("ExportsManager unit test", () => {
190
193
manager . createJSONExport ( {
191
194
input : cursor ,
192
195
exportName,
196
+ exportTitle : "Some export" ,
193
197
jsonExportFormat : "relaxed" ,
194
198
} ) ;
195
199
await cursorCloseNotification ;
@@ -225,6 +229,7 @@ describe("ExportsManager unit test", () => {
225
229
manager . createJSONExport ( {
226
230
input : cursor ,
227
231
exportName,
232
+ exportTitle : "Some export" ,
228
233
jsonExportFormat : "relaxed" ,
229
234
} )
230
235
) . toThrow ( ) ;
@@ -235,12 +240,14 @@ describe("ExportsManager unit test", () => {
235
240
manager . createJSONExport ( {
236
241
input : cursor ,
237
242
exportName,
243
+ exportTitle : "Some export" ,
238
244
jsonExportFormat : "relaxed" ,
239
245
} ) ;
240
246
expect ( ( ) =>
241
247
manager . createJSONExport ( {
242
248
input : cursor ,
243
249
exportName,
250
+ exportTitle : "Some export" ,
244
251
jsonExportFormat : "relaxed" ,
245
252
} )
246
253
) . toThrow ( ) ;
@@ -254,6 +261,7 @@ describe("ExportsManager unit test", () => {
254
261
manager . createJSONExport ( {
255
262
input : cursor ,
256
263
exportName,
264
+ exportTitle : "Some export" ,
257
265
jsonExportFormat : "relaxed" ,
258
266
} ) ;
259
267
await cursorCloseNotification ;
@@ -286,6 +294,7 @@ describe("ExportsManager unit test", () => {
286
294
manager . createJSONExport ( {
287
295
input : cursor ,
288
296
exportName,
297
+ exportTitle : "Some export" ,
289
298
jsonExportFormat : "relaxed" ,
290
299
} ) ;
291
300
await cursorCloseNotification ;
@@ -320,6 +329,7 @@ describe("ExportsManager unit test", () => {
320
329
manager . createJSONExport ( {
321
330
input : cursor ,
322
331
exportName,
332
+ exportTitle : "Some export" ,
323
333
jsonExportFormat : "canonical" ,
324
334
} ) ;
325
335
await cursorCloseNotification ;
@@ -386,6 +396,7 @@ describe("ExportsManager unit test", () => {
386
396
manager . createJSONExport ( {
387
397
input : cursor ,
388
398
exportName,
399
+ exportTitle : "Some export" ,
389
400
jsonExportFormat : "relaxed" ,
390
401
} ) ;
391
402
await cursorCloseNotification ;
@@ -413,6 +424,7 @@ describe("ExportsManager unit test", () => {
413
424
manager . createJSONExport ( {
414
425
input : cursor ,
415
426
exportName,
427
+ exportTitle : "Some export" ,
416
428
jsonExportFormat : "relaxed" ,
417
429
} ) ;
418
430
await cursorCloseNotification ;
@@ -460,6 +472,7 @@ describe("ExportsManager unit test", () => {
460
472
manager . createJSONExport ( {
461
473
input : cursor ,
462
474
exportName,
475
+ exportTitle : "Some export" ,
463
476
jsonExportFormat : "relaxed" ,
464
477
} ) ;
465
478
@@ -486,6 +499,7 @@ describe("ExportsManager unit test", () => {
486
499
manager . createJSONExport ( {
487
500
input : cursor ,
488
501
exportName,
502
+ exportTitle : "Some export" ,
489
503
jsonExportFormat : "relaxed" ,
490
504
} ) ;
491
505
await cursorCloseNotification ;
0 commit comments