diff --git a/examples/new-dawn/cypress.config.ts b/examples/new-dawn/cypress.config.ts index 9b20f18f4..694eb9827 100644 --- a/examples/new-dawn/cypress.config.ts +++ b/examples/new-dawn/cypress.config.ts @@ -1,15 +1,15 @@ -import { configureBeforeSynpress } from "@synthetixio/synpress/cypress"; -import { defineConfig } from "cypress"; +import { configureBeforeSynpress } from '@synthetixio/synpress/cypress' +import { defineConfig } from 'cypress' export default defineConfig({ chromeWebSecurity: false, e2e: { - baseUrl: "http://localhost:9999", - specPattern: "test/cypress/**/*.cy.{js,jsx,ts,tsx}", - supportFile: "test/cypress/support/e2e.{js,jsx,ts,tsx}", + baseUrl: 'http://localhost:9999', + specPattern: 'test/cypress/**/*.cy.{js,jsx,ts,tsx}', + supportFile: 'test/cypress/support/e2e.{js,jsx,ts,tsx}', testIsolation: false, async setupNodeEvents(on, config) { - return configureBeforeSynpress(on, config); - }, - }, -}); + return configureBeforeSynpress(on, config) + } + } +})