summaryrefslogtreecommitdiffstats
path: root/cypress.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'cypress.config.js')
-rw-r--r--cypress.config.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/cypress.config.js b/cypress.config.js
deleted file mode 100644
index 32564744..00000000
--- a/cypress.config.js
+++ /dev/null
@@ -1,28 +0,0 @@
-const { defineConfig } = require('cypress')
-const browserify = require('@cypress/browserify-preprocessor')
-
-module.exports = defineConfig({
- projectId: '7mqhfh',
-
- viewportWidth: 1280,
- viewportHeight: 720,
- defaultCommandTimeout: 6000,
- retries: 1,
-
- env: {
- failSilently: false,
- type: 'actual',
- },
-
- screenshotsFolder: 'cypress/snapshots/actual',
- trashAssetsBeforeRuns: true,
-
- e2e: {
- baseUrl: 'http://localhost:8082/index.php',
-
- setupNodeEvents(on, config) {
- // Fix browserslist extend https://github.com/cypress-io/cypress/issues/2983#issuecomment-570616682
- on('file:preprocessor', browserify())
- },
- },
-})