Skip to content

Commit c1980f0

Browse files
authored
fix: Destroy stdout and stderr on child vercel process (#50)
1 parent 081ec99 commit c1980f0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ async function testFixture(fixture) {
7373
const baseUrl = await isReady(vercelProcess);
7474
await checkProbes(baseUrl, vercelConf.probes);
7575
vercelProcess.cancel();
76+
vercelProcess.stdout.destroy();
77+
vercelProcess.stderr.destroy();
7678
}
7779

7880
describe('vercel-rust', () => {

0 commit comments

Comments
 (0)