Skip to content

Commit 6fbf85c

Browse files
committed
client test clean up
1 parent d90d357 commit 6fbf85c

File tree

3 files changed

+1
-40
lines changed

3 files changed

+1
-40
lines changed

src/packages/test/client.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ describe('SQLiteCloudClient test suite', () => {
1717
expect(() => new SQLiteCloudClient({ connectionString: 'invalid' })).toThrow()
1818
})
1919

20-
it('should be able to query the database', async () => {
20+
it('should be able to query the database via HTTP', async () => {
2121
const { data, error } = await client.sql`SELECT * FROM ${DEFAULT_TABLE_NAME}`;
22-
console.log(data, error)
2322
expect(data).toBeDefined()
2423
expect(error).toBeNull()
2524
})
26-
2725
})

src/packages/test/storage.test.ts

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/packages/test/utils.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)