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 6651c9d commit f15c648Copy full SHA for f15c648
test/connection.test.ts
@@ -293,10 +293,8 @@ describe('connection', () => {
293
})
294
295
it('should apply short timeout', done => {
296
- const database = getChinookConnection(undefined, { timeout: 200 })
297
- database.verbose()
298
-
299
// this operation sends 150 packets and cannot complete in 200ms
+ const database = getChinookConnection(undefined, { timeout: 200 })
300
database.sendCommands('TEST ROWSET_CHUNK', (error, results) => {
301
expect(error).toBeInstanceOf(SQLiteCloudError)
302
expect((error as any).message).toBe('Request timed out')
0 commit comments