Skip to content

Commit

Permalink
#37067 adjust post deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbe1987 committed Sep 10, 2024
1 parent 940f404 commit 0f36636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paypal-commercetools-extension/tests/post-deploy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ describe('Testing post deploy', () => {
require('../src/connector/post-deploy');
await sleep(10000);
expect(apiRoot.post).toBeCalledTimes(8);
expect(apiRoot.delete).toBeCalledTimes(0);
expect(apiRoot.get).toBeCalledTimes(8);
expect(apiRequest.execute).toBeCalledTimes(16);
expect(apiRoot.delete).toBeCalledTimes(1);
expect(apiRoot.get).toBeCalledTimes(9);
expect(apiRequest.execute).toBeCalledTimes(18);
expect(webhooksApi.webhooksList).toBeCalledTimes(1);
expect(webhooksApi.webhooksPost).toBeCalledTimes(1);
}, 20000);
Expand Down

0 comments on commit 0f36636

Please sign in to comment.