Skip to content

Commit

Permalink
chore: fix travis ci for NodeJS 16
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Apr 28, 2022
1 parent 83045d0 commit b45453b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/api/core/account.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,8 @@ describe('core:account', () => {
done()
})
})
// Let enough time to process
.timeout(5000)

it('reset user password', () => {
return accountService.create({
Expand All @@ -270,7 +272,7 @@ describe('core:account', () => {
})
})
// Let enough time to process
.timeout(10000)
.timeout(15000)

it('check reset password email', (done) => {
// Add some delay to wait for email reception
Expand Down Expand Up @@ -308,6 +310,8 @@ describe('core:account', () => {
done()
})
})
// Let enough time to process
.timeout(5000)

it('change user password', () => {
return accountService.create({
Expand All @@ -329,7 +333,7 @@ describe('core:account', () => {
})
})
// Let enough time to process
.timeout(10000)
.timeout(15000)

it('check changed password email', (done) => {
// Add some delay to wait for email reception
Expand Down

0 comments on commit b45453b

Please sign in to comment.