Skip to content

Commit

Permalink
Removed timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
esseswann committed Sep 19, 2023
1 parent 4d61fb7 commit 436d2b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/basic/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const dirname = __dirname.split('/').pop()
let driverExceptionThrown = false

beforeAll(async () => {
const timeout = 4500 // Should be less then Jest timeout
if (!(await database.ready(timeout))) {
driverExceptionThrown = true
throw new Error(`Database has not become ready in ${timeout}ms!`)
}
// const timeout = 4500 // Should be less then Jest timeout
// if (!(await database.ready(timeout))) {
// driverExceptionThrown = true
// throw new Error(`Database has not become ready in ${timeout}ms!`)
// }

await database.tableClient.withSession(async (session) =>
Promise.all([
Expand Down

0 comments on commit 436d2b1

Please sign in to comment.