Skip to content

Commit f15c648

Browse files
Remove verbose()
1 parent 6651c9d commit f15c648

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/connection.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,8 @@ describe('connection', () => {
293293
})
294294

295295
it('should apply short timeout', done => {
296-
const database = getChinookConnection(undefined, { timeout: 200 })
297-
database.verbose()
298-
299296
// this operation sends 150 packets and cannot complete in 200ms
297+
const database = getChinookConnection(undefined, { timeout: 200 })
300298
database.sendCommands('TEST ROWSET_CHUNK', (error, results) => {
301299
expect(error).toBeInstanceOf(SQLiteCloudError)
302300
expect((error as any).message).toBe('Request timed out')

0 commit comments

Comments
 (0)