mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-13 02:30:09 -06:00
31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
projectId: 'ypt4pf',
|
|
e2e: {
|
|
defaultCommandTimeout: 20000, // these take a bit longer b/c they're e2e open mode test
|
|
async setupNodeEvents (on, config) {
|
|
if (!process.env.HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS) {
|
|
throw new Error('HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS is missing. Close Cypress and run tests using the `yarn cypress:*` commands from the `packages/app` directory')
|
|
}
|
|
|
|
// Delete this as we only want to honor it on parent Cypress when doing E2E Cypress in Cypress testing
|
|
delete process.env.HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS
|
|
delete process.env.CYPRESS_INTERNAL_E2E_TESTING_SELF_PARENT_PROJECT
|
|
process.env.CYPRESS_INTERNAL_E2E_TESTING_SELF = 'true'
|
|
const { e2ePluginSetup } = require('@packages/frontend-shared/cypress/e2e/e2ePluginSetup') as typeof import('@packages/frontend-shared/cypress/e2e/e2ePluginSetup')
|
|
|
|
return await e2ePluginSetup(on, config)
|
|
},
|
|
},
|
|
retries: {
|
|
runMode: 2,
|
|
},
|
|
// @ts-ignore We are setting these namespaces in order to properly test Cypress in Cypress
|
|
clientRoute: '/__app/',
|
|
namespace: '__cypress-app',
|
|
socketIoRoute: '/__app-socket',
|
|
socketIoCookie: '__app-socket',
|
|
devServerPublicPathRoute: '/__cypress-app/src',
|
|
})
|