@@ -9,14 +9,13 @@ const harness = path.join(Helper.root, 'test', 'fixtures', 'harness')
9
9
const minimal = path . join ( Helper . root , 'test' , 'fixtures' , 'minimal' )
10
10
11
11
class Rig {
12
- setup = async ( { comment } ) => {
13
- this . helper = new Helper ( )
12
+ setup = async ( { comment, timeout } ) => {
13
+ timeout ( 180000 )
14
+ this . platformDir = path . join ( Helper . root , 'pear' )
15
+ const helper = new Helper ( { platformDir : this . platformDir } )
16
+ this . helper = helper
14
17
comment ( 'connecting local sidecar' )
15
- await this . helper . ready ( )
16
- await this . helper . shutdown ( )
17
- this . helper = new Helper ( )
18
- await this . helper . ready ( )
19
- comment ( 'local sidecar connected' )
18
+ await helper . ready ( )
20
19
}
21
20
22
21
cleanup = async ( { comment } ) => {
@@ -37,7 +36,7 @@ test('pear stage --json <channel> <dir>', async function ({ plan, alike, is }) {
37
36
38
37
const argv = [ 'stage' , '--json' , 'test-' + testId , minimal ]
39
38
40
- const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
39
+ const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
41
40
42
41
await running . inspector . evaluate ( `
43
42
__PEAR_TEST__.command(${ JSON . stringify ( argv ) } )
@@ -239,7 +238,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
239
238
240
239
const testId1 = Math . floor ( Math . random ( ) * 100000 )
241
240
const argvInit1 = [ 'stage' , '--json' , `test-${ testId1 } ` , relativePath ]
242
- const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
241
+ const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
243
242
await stager1 . inspector . evaluate ( `
244
243
__PEAR_TEST__.command(${ JSON . stringify ( argvInit1 ) } )
245
244
` , { returnByValue : false } )
@@ -257,7 +256,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
257
256
258
257
const testId2 = Math . floor ( Math . random ( ) * 100000 )
259
258
const argvInit2 = [ 'stage' , '--json' , `test-${ testId2 } ` , relativePath ]
260
- const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
259
+ const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
261
260
await stager2 . inspector . evaluate ( `
262
261
__PEAR_TEST__.command(${ JSON . stringify ( argvInit2 ) } )
263
262
` , { returnByValue : false } )
@@ -287,7 +286,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
287
286
} )
288
287
289
288
const argv = [ 'shift' , staged1 . link , staged2 . link ]
290
- const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
289
+ const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
291
290
await running . inspector . evaluate ( `
292
291
__PEAR_TEST__.command(${ JSON . stringify ( argv ) } )
293
292
` , { returnByValue : false } )
@@ -315,7 +314,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
315
314
316
315
const testId1 = Math . floor ( Math . random ( ) * 100000 )
317
316
const argvInit1 = [ 'stage' , '--json' , `test-${ testId1 } ` , relativePath ]
318
- const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
317
+ const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
319
318
await stager1 . inspector . evaluate ( `
320
319
__PEAR_TEST__.command(${ JSON . stringify ( argvInit1 ) } )
321
320
` , { returnByValue : false } )
@@ -333,7 +332,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
333
332
334
333
const testId2 = Math . floor ( Math . random ( ) * 100000 )
335
334
const argvInit2 = [ 'stage' , '--json' , `test-${ testId2 } ` , relativePath ]
336
- const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
335
+ const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
337
336
await stager2 . inspector . evaluate ( `
338
337
__PEAR_TEST__.command(${ JSON . stringify ( argvInit2 ) } )
339
338
` , { returnByValue : false } )
@@ -363,7 +362,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
363
362
} )
364
363
365
364
const argv = [ 'shift' , '--json' , staged1 . link , staged2 . link ]
366
- const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
365
+ const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
367
366
await running . inspector . evaluate ( `
368
367
__PEAR_TEST__.command(${ JSON . stringify ( argv ) } )
369
368
` , { returnByValue : false } )
@@ -393,7 +392,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
393
392
394
393
const testId1 = Math . floor ( Math . random ( ) * 100000 )
395
394
const argvInit1 = [ 'stage' , '--json' , `test-${ testId1 } ` , relativePath ]
396
- const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
395
+ const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
397
396
await stager1 . inspector . evaluate ( `
398
397
__PEAR_TEST__.command(${ JSON . stringify ( argvInit1 ) } )
399
398
` , { returnByValue : false } )
@@ -411,7 +410,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
411
410
412
411
const testId2 = Math . floor ( Math . random ( ) * 100000 )
413
412
const argvInit2 = [ 'stage' , '--json' , `test-${ testId2 } ` , relativePath ]
414
- const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
413
+ const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
415
414
await stager2 . inspector . evaluate ( `
416
415
__PEAR_TEST__.command(${ JSON . stringify ( argvInit2 ) } )
417
416
` , { returnByValue : false } )
@@ -443,7 +442,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
443
442
} )
444
443
445
444
const argv = [ 'shift' , '--force' , staged1 . link , staged2 . link ]
446
- const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
445
+ const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
447
446
await running . inspector . evaluate ( `
448
447
__PEAR_TEST__.command(${ JSON . stringify ( argv ) } )
449
448
` , { returnByValue : false } )
@@ -472,7 +471,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
472
471
473
472
const testId1 = Math . floor ( Math . random ( ) * 100000 )
474
473
const argvInit1 = [ 'stage' , '--json' , `test-${ testId1 } ` , relativePath ]
475
- const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
474
+ const stager1 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
476
475
await stager1 . inspector . evaluate ( `
477
476
__PEAR_TEST__.command(${ JSON . stringify ( argvInit1 ) } )
478
477
` , { returnByValue : false } )
@@ -490,7 +489,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
490
489
491
490
const testId2 = Math . floor ( Math . random ( ) * 100000 )
492
491
const argvInit2 = [ 'stage' , '--json' , `test-${ testId2 } ` , relativePath ]
493
- const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
492
+ const stager2 = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
494
493
await stager2 . inspector . evaluate ( `
495
494
__PEAR_TEST__.command(${ JSON . stringify ( argvInit2 ) } )
496
495
` , { returnByValue : false } )
@@ -522,7 +521,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
522
521
} )
523
522
524
523
const argv = [ 'shift' , '--force' , '--json' , staged1 . link , staged2 . link ]
525
- const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true } )
524
+ const running = await Helper . open ( harness , { tags : [ 'exit' ] } , { lineout : true , platformDir : rig . platformDir } )
526
525
await running . inspector . evaluate ( `
527
526
__PEAR_TEST__.command(${ JSON . stringify ( argv ) } )
528
527
` , { returnByValue : false } )
0 commit comments