Skip to content

Commit

Permalink
fix e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
dasfmi committed Nov 16, 2023
1 parent 248269c commit 3e113a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/nextjs-app/test/ingest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('Ingestion & query on different runtime', () => {
});
expect(qResp.status).toBeDefined();
expect(qResp.tables).toBeDefined();
expect(qResp.tables).toHaveLength(2);
expect(qResp.tables).toHaveLength(1);
expect(qResp.tables[0].columns).toHaveLength(2);
expect(qResp.tables[0].columns[0].data.foo).toEqual('bar');
expect(qResp.tables[0].columns[1].data.bar).toEqual('baz');
Expand All @@ -58,7 +58,7 @@ describe('Ingestion & query on different runtime', () => {
});
expect(qResp.status).toBeDefined();
expect(qResp.tables).toBeDefined();
expect(qResp.tables).toHaveLength(2);
expect(qResp.tables).toHaveLength(1);
expect(qResp.tables[0].columns).toHaveLength(2);
expect(qResp.tables[0].columns[0].data.foo).toEqual('bar');
expect(qResp.tables[0].columns[1].data.bar).toEqual('baz');
Expand Down

0 comments on commit 3e113a3

Please sign in to comment.