We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0ef98 commit 06f15b4Copy full SHA for 06f15b4
1 file changed
cjs-test/quick-start.spec.ts
@@ -4,6 +4,7 @@ describe("CJS Test", async () => {
4
const { givePort } = await import("../tools/ports.js");
5
let out = "";
6
const listener = (chunk: Buffer) => {
7
+ console.log(chunk.toString()); // @todo remove
8
out += chunk.toString();
9
};
10
const quickStart = spawn("tsx", ["quick-start.ts"]);
0 commit comments