Skip to content

Commit

Permalink
More debugging (temporary).
Browse files Browse the repository at this point in the history
  • Loading branch information
cahrens committed Oct 3, 2024
1 parent 8ead098 commit a5c2a5f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion integration-tests/tests/run-analysis-azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ const testRunAnalysisAzure = _.flowRight(
});
await click(page, clickable({ textContains: 'Close' }), { timeout: Millis.ofMinute });
await waitForNoModal(page);
// In addition to spinners related to the side modal, there is a spinner over the page.
// Debugging to see if waiting helps (still not clear if modal animation is causing the problem)
await delay(Millis.ofSeconds(5));
// In addition to spinners related to the side modal, there is a spinner over the page while content loads.
await waitForNoSpinners(page);

// Navigate to analysis launcher
Expand Down
4 changes: 3 additions & 1 deletion integration-tests/tests/run-analysis.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ const testRunAnalysisFn = _.flowRight(
});
await click(page, clickable({ textContains: 'Close' }), { timeout: Millis.ofMinute });
await waitForNoModal(page);
// In addition to spinners related to the side modal, there is a spinner over the page.
// Debugging to see if waiting helps (still not clear if modal animation is causing the problem)
await delay(Millis.ofSeconds(5));
// In addition to spinners related to the side modal, there is a spinner over the page while content loads.
await waitForNoSpinners(page);

// Navigate to analysis launcher
Expand Down
4 changes: 3 additions & 1 deletion integration-tests/tests/run-rstudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ const testRunRStudioFn = _.flowRight(
});
await click(page, clickable({ textContains: 'Close' }), { timeout: Millis.ofMinute });
await waitForNoModal(page);
// In addition to spinners related to the side modal, there is a spinner over the page.
// Debugging to see if waiting helps (still not clear if modal animation is causing the problem)
await delay(Millis.ofSeconds(5));
// In addition to spinners related to the side modal, there is a spinner over the page while content loads.
await waitForNoSpinners(page);

// Navigate to analysis launcher
Expand Down

0 comments on commit a5c2a5f

Please sign in to comment.