mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-12 18:29:53 -05:00
dfd296e85c
* chore: update system tests for vite 4 and 5 to latest [run ci] * chore: remove projects vite 2.8.6, 2.9.1, vite3.0.2 as they are no longer supported by @cypress/vite-dev-server * chore: update vite-ct-function-api system tests to latests * chore: update vite-ct-object-api system tests to latests * chore: update vite-simple system tests to latests * breaking: remove support for vite 2 and 3 [run ci] * update react-vite-ts-configured to latest deps * update react-vite-ts-unconfigured to latest deps * update vue2 to latest (to be removed later in v14) * update vue3-vite-ts-configured to latest deps (need to fix typings issue within vue) * update vue3-vite-ts-unconfigured to latest deps * update vue3-vite-ts-custom-index-html to latest deps (need to fix typings issue within vue) * update vue3 to latest deps * update detection spec to be compatible with latest compatible deps. removed test for allowing passing scaffolding for installing prereleases as we don't support prereleases ahead of time * add changelog * chore: update react-vite-ts-configured * update svelte vite * update ct-public-api-solid-js * update system test vite dependencies * update comments on typings issues and missed dependencies [run ci] * add addresses section [run ci] * update lock file for component-testing-outdated-dependencies [run ci] * update lock file [run ci] * update missed yarn lock file [run ci] * fix issues inside vue2 project package not using correct dependencies [run ci] * fix issues with failing vds test [run ci] * fix failing tests in vite-dev-server by fixing source map references (expected since we are on 3 major versions ahead of vite) and install @cypress/vite-dev-server in correct packages [run ci]
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
const { devServer } = require('@cypress/vite-dev-server')
|
|
|
|
module.exports = {
|
|
retries: null,
|
|
component: {
|
|
experimentalSingleTabRunMode: true,
|
|
supportFile: 'cypress/component/support/component.ts',
|
|
devServer (cypressConfig) {
|
|
return devServer(cypressConfig)
|
|
},
|
|
indexHtmlFile: 'cypress/component/support/component-index.html',
|
|
},
|
|
}
|