Skip to content

Commit 2ce3605

Browse files
committed
remove logs from child process
1 parent a060cfa commit 2ce3605

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

packages/render/integrations/integrations.spec.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,6 @@ const startWebServer = async (command: string, url: string, cwd: string) => {
6060
stdio: 'pipe',
6161
});
6262

63-
child.stdout.on('data', (data) => {
64-
console.log(data.toString());
65-
});
66-
child.stderr.on('data', (data) => {
67-
console.error(data.toString());
68-
});
69-
7063
process.on('exit', () => {
7164
child.kill();
7265
});

0 commit comments

Comments
 (0)