Skip to content

Commit 8e3cc8b

Browse files
committed
debug
1 parent b2be2d3 commit 8e3cc8b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/core/e2e/e2e.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,12 @@ describe('e2e', () => {
124124
const decoder = new TextDecoder();
125125
let contents = '';
126126
for await (const chunk of returnValue) {
127+
console.log('Received chunk:', chunk);
127128
const text = decoder.decode(chunk, { stream: true });
129+
console.log('Decoded text:', text);
128130
contents += text;
129131
}
132+
console.log('Final contents:', contents);
130133
expect(contents).toBe('0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n');
131134
});
132135

0 commit comments

Comments
 (0)