Skip to content

Commit 8954293

Browse files
committed
not much
1 parent 413610c commit 8954293

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

__tests__/integrationtests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ describe('--Integration Tests--', () => {
4949
const response = await client.insertStream('TESTJESTSTREAM', [
5050
{ "name": "stab-rabbit", "email": "123@mail.com", "age": 100 }
5151
]);
52-
console.log(response);
5352
const data = [];
54-
await client.push('SELECT * FROM TESTJESTSTREAM;', async (chunk) => {
53+
await client.push('SELECT * FROM TESTJESTSTREAM EMIT CHANGES;', async (chunk) => {
5554
data.push(JSON.parse(chunk));
5655
if (data[1]) {
5756
client.terminate(data[0].queryId);

0 commit comments

Comments
 (0)