Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
matstyler committed Jul 11, 2024
1 parent cce84ba commit a9c9436
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/new-dawn/cypress.config.ts
Original file line number Diff line number Diff line change
@@ -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)
}
}
})

0 comments on commit a9c9436

Please sign in to comment.