Skip to content

Commit

Permalink
adjust all times
Browse files Browse the repository at this point in the history
  • Loading branch information
maghirardelli committed Sep 10, 2021
1 parent fa2873f commit 2fc21b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ describe('EnvironmentSCService', () => {
});
service.updateStatus = jest.fn(async () => {
// sleep
await new Promise(r => setTimeout(r, 4000));
await new Promise(r => setTimeout(r, 1000));
// return some non falsey value
return 'Updated';
});
Expand Down Expand Up @@ -1496,7 +1496,7 @@ describe('EnvironmentSCService', () => {
});
service.updateStatus = jest.fn(async () => {
// sleep
await new Promise(r => setTimeout(r, 4000));
await new Promise(r => setTimeout(r, 1000));
// return some non falsey value
return 'Updated';
});
Expand Down

0 comments on commit 2fc21b3

Please sign in to comment.