Skip to content

Commit 66b5879

Browse files
committed
Use localdev to run tests
1 parent a9d67e1 commit 66b5879

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

test/05-commands.test.js

+19-20
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ const harness = path.join(Helper.root, 'test', 'fixtures', 'harness')
99
const minimal = path.join(Helper.root, 'test', 'fixtures', 'minimal')
1010

1111
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
1417
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()
2019
}
2120

2221
cleanup = async ({ comment }) => {
@@ -37,7 +36,7 @@ test('pear stage --json <channel> <dir>', async function ({ plan, alike, is }) {
3736

3837
const argv = ['stage', '--json', 'test-' + testId, minimal]
3938

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 })
4140

4241
await running.inspector.evaluate(`
4342
__PEAR_TEST__.command(${JSON.stringify(argv)})
@@ -239,7 +238,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
239238

240239
const testId1 = Math.floor(Math.random() * 100000)
241240
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 })
243242
await stager1.inspector.evaluate(`
244243
__PEAR_TEST__.command(${JSON.stringify(argvInit1)})
245244
`, { returnByValue: false })
@@ -257,7 +256,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
257256

258257
const testId2 = Math.floor(Math.random() * 100000)
259258
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 })
261260
await stager2.inspector.evaluate(`
262261
__PEAR_TEST__.command(${JSON.stringify(argvInit2)})
263262
`, { returnByValue: false })
@@ -287,7 +286,7 @@ test('pear shift <source> <destination>', async function ({ plan, is, teardown }
287286
})
288287

289288
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 })
291290
await running.inspector.evaluate(`
292291
__PEAR_TEST__.command(${JSON.stringify(argv)})
293292
`, { returnByValue: false })
@@ -315,7 +314,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
315314

316315
const testId1 = Math.floor(Math.random() * 100000)
317316
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 })
319318
await stager1.inspector.evaluate(`
320319
__PEAR_TEST__.command(${JSON.stringify(argvInit1)})
321320
`, { returnByValue: false })
@@ -333,7 +332,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
333332

334333
const testId2 = Math.floor(Math.random() * 100000)
335334
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 })
337336
await stager2.inspector.evaluate(`
338337
__PEAR_TEST__.command(${JSON.stringify(argvInit2)})
339338
`, { returnByValue: false })
@@ -363,7 +362,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
363362
})
364363

365364
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 })
367366
await running.inspector.evaluate(`
368367
__PEAR_TEST__.command(${JSON.stringify(argv)})
369368
`, { returnByValue: false })
@@ -393,7 +392,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
393392

394393
const testId1 = Math.floor(Math.random() * 100000)
395394
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 })
397396
await stager1.inspector.evaluate(`
398397
__PEAR_TEST__.command(${JSON.stringify(argvInit1)})
399398
`, { returnByValue: false })
@@ -411,7 +410,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
411410

412411
const testId2 = Math.floor(Math.random() * 100000)
413412
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 })
415414
await stager2.inspector.evaluate(`
416415
__PEAR_TEST__.command(${JSON.stringify(argvInit2)})
417416
`, { returnByValue: false })
@@ -443,7 +442,7 @@ test('pear shift --force <source> <destination>', async function ({ plan, is, te
443442
})
444443

445444
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 })
447446
await running.inspector.evaluate(`
448447
__PEAR_TEST__.command(${JSON.stringify(argv)})
449448
`, { returnByValue: false })
@@ -472,7 +471,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
472471

473472
const testId1 = Math.floor(Math.random() * 100000)
474473
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 })
476475
await stager1.inspector.evaluate(`
477476
__PEAR_TEST__.command(${JSON.stringify(argvInit1)})
478477
`, { returnByValue: false })
@@ -490,7 +489,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
490489

491490
const testId2 = Math.floor(Math.random() * 100000)
492491
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 })
494493
await stager2.inspector.evaluate(`
495494
__PEAR_TEST__.command(${JSON.stringify(argvInit2)})
496495
`, { returnByValue: false })
@@ -522,7 +521,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
522521
})
523522

524523
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 })
526525
await running.inspector.evaluate(`
527526
__PEAR_TEST__.command(${JSON.stringify(argv)})
528527
`, { returnByValue: false })

0 commit comments

Comments
 (0)