Skip to content

Commit 823c647

Browse files
committed
fix window tests
1 parent 5994fb2 commit 823c647

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ test('Pear.run exit when child calls pipe.destroy()', async function (t) {
339339
await Helper.untilExit(pid)
340340
})
341341

342-
test('Pear.run exit when parent calls pipe.end()', async function (t) {
342+
test('Pear.run exit when parent calls pipe.end()', {skip: isWindows }, async function (t) {
343343
const runEndFromParent = path.join(dirname, 'fixtures', 'run-end-from-parent')
344344
const runChild = path.join(dirname, 'fixtures', 'run-child')
345345

@@ -353,7 +353,7 @@ test('Pear.run exit when parent calls pipe.end()', async function (t) {
353353
await Helper.untilExit(pid)
354354
})
355355

356-
test('Pear.run exit when parent calls pipe.destroy()', async function (t) {
356+
test('Pear.run exit when parent calls pipe.destroy()', {skip: isWindows }, async function (t) {
357357
const runDestroyFromParent = path.join(dirname, 'fixtures', 'run-destroy-from-parent')
358358
const runChildErrorHandler = path.join(dirname, 'fixtures', 'run-child-error-handler')
359359

0 commit comments

Comments
 (0)