mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 21:10:47 -05:00
b326693879
* removing vite-dev-server local dependency from react-vite-ts-configured system test * moving some CRA examples over to use the object api for setup * fixing issue where function API was broken by object API for cy config + devservers * adding deeply nested react import to project-fixtures for cra * finishes cutting over cypress/react for sys tests * chore: adding circle for this feature branch * chore: moving over many vue + vite system tests to use object API instead of function API (#21080) * doing webpack-dev-server cutovers * removing more webpack-dev-server refrences * fixing snapshots * bumping yarn.lock * wip * fix test * fix assertion Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> * feat: removing all references for "fresh" dev servers (webpack-dev-server-fresh and vite-dev-server-fresh) (#21094) Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com> * chore: add dev-servers as deps to server to be included in the binary (#21091) * fix bad merge * fix next types and webpack-dev-server- resolve Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
30 lines
1.2 KiB
TypeScript
30 lines
1.2 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
|
|
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',
|
|
})
|