Skip to content

Commit 808a25c

Browse files
committed
add toString
1 parent f600aa3 commit 808a25c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/render/integrations/integrations.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ const startWebServer = async (command: string, url: string, cwd: string) => {
6161
});
6262

6363
child.stdout.on('data', (data) => {
64-
console.log(data);
64+
console.log(data.toString());
6565
});
6666
child.stderr.on('data', (data) => {
67-
console.error(data);
67+
console.error(data.toString());
6868
});
6969

7070
process.on('exit', () => {

0 commit comments

Comments
 (0)