From aef8353018fb5be86bbf8a7352a4c3db0411402f Mon Sep 17 00:00:00 2001 From: Chance Strickland Date: Tue, 21 Jan 2025 21:14:54 -0800 Subject: [PATCH] add comments --- cypress.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cypress.config.ts b/cypress.config.ts index bb7bd1485..7009cfa08 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -5,6 +5,11 @@ export default defineConfig({ viewportHeight: 768, fixturesFolder: false, e2e: { + // TODO There is a bug (I think) in Cypress that results in the page + // navigating to `about:blank` after certain tests run. Unclear why at this + // stage. This is a hack that seems to prevent it, but unclear why. Debug + // and remove this config option. + // Possibly related: https://github.com/cypress-io/cypress/issues/28527 testIsolation: false, setupNodeEvents(on, config) {}, baseUrl: 'http://localhost:9009',