@@ -1320,8 +1320,14 @@ describe('Collection import', function () {
1320
1320
1321
1321
describe ( 'aborting an import' , function ( ) {
1322
1322
it ( 'aborts an in progress CSV import' , async function ( ) {
1323
- // 16116 documents.
1324
- const csvPath = path . resolve ( __dirname , '..' , 'fixtures' , 'listings.csv' ) ;
1323
+ // 279712 documents, so this should take a while to import, giving us lots
1324
+ // of time to disconnect in time.
1325
+ const csvPath = path . resolve (
1326
+ __dirname ,
1327
+ '..' ,
1328
+ 'fixtures' ,
1329
+ 'listings-large.csv'
1330
+ ) ;
1325
1331
1326
1332
await browser . navigateToCollectionTab (
1327
1333
DEFAULT_CONNECTION_NAME_1 ,
@@ -1389,12 +1395,13 @@ describe('Collection import', function () {
1389
1395
} ) ;
1390
1396
1391
1397
it ( 'aborts an in progress JSON import' , async function ( ) {
1392
- // 16116 documents.
1398
+ // 279712 documents, so this should take a while to import, giving us lots
1399
+ // of time to disconnect in time.
1393
1400
const jsonPath = path . resolve (
1394
1401
__dirname ,
1395
1402
'..' ,
1396
1403
'fixtures' ,
1397
- 'listings.json'
1404
+ 'listings-large .json'
1398
1405
) ;
1399
1406
1400
1407
await browser . navigateToCollectionTab (
@@ -1459,8 +1466,14 @@ describe('Collection import', function () {
1459
1466
} ) ;
1460
1467
1461
1468
it ( 'aborts when disconnected' , async function ( ) {
1462
- // 16116 documents.
1463
- const csvPath = path . resolve ( __dirname , '..' , 'fixtures' , 'listings.csv' ) ;
1469
+ // 279712 documents, so this should take a while to import, giving us lots
1470
+ // of time to disconnect in time.
1471
+ const csvPath = path . resolve (
1472
+ __dirname ,
1473
+ '..' ,
1474
+ 'fixtures' ,
1475
+ 'listings-large.csv'
1476
+ ) ;
1464
1477
1465
1478
await browser . navigateToCollectionTab (
1466
1479
DEFAULT_CONNECTION_NAME_1 ,
0 commit comments