Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Nov 8, 2023
1 parent 097c10b commit fbf34b7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ describe('Snowplow Micro integration', () => {
testIdentifier = await pageSetup();
await loadUrlAndWait('/integration.html?eventMethod=get');
await $('#bottomRight').click();
await browser.pause(5000); // Time for requests to get written
await browser.pause(10000); // Time for requests to get written
await loadUrlAndWait('/integration.html?eventMethod=post');
await $('#bottomRight').click();
await browser.pause(6000); // Time for requests to get written
await browser.pause(10000); // Time for requests to get written
await loadUrlAndWait('/integration.html?eventMethod=beacon');
await $('#bottomRight').click();
await browser.pause(6000); // Time for requests to get written
await browser.pause(10000); // Time for requests to get written
log = await browser.call(async () => await fetchResults());
});

Expand Down

0 comments on commit fbf34b7

Please sign in to comment.