Skip to content

Commit

Permalink
test(serviceConfig): reduce mock response interval (#1464)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcabrera authored Oct 29, 2024
1 parent ad6bad9 commit 3be9359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/common/__tests__/serviceConfig.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ describe('ServiceConfig', () => {
moxios.stubRequest(/\/(test|pollSuccess).*?/, {
status: 200,
responseText: 'success',
timeout: 1
timeout: 0
});

moxios.stubRequest(/\/(error|pollError).*?/, {
status: 404,
responseText: 'error',
timeout: 1
timeout: 0
});
});

Expand Down

0 comments on commit 3be9359

Please sign in to comment.