mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 21:10:47 -05:00
87ce14a70f
* fix: support ressources with relative paths * fix: support ressources with relative paths - review changes * try fixing contributor workflow * try to fix regex * try again * try workflow again * Revert changes to workflow * exclude tests from contributor workflow * Update cli/CHANGELOG.md Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com> * Update packages/server/lib/controllers/iframes.ts Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com> * fix terst * use URLSearchParams --------- Co-authored-by: Florian Riedel <low@fochlac.com> Co-authored-by: Adam Stone-Lord <adams@cypress.io> Co-authored-by: Jordan <jordan@jpdesigning.com> Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com>
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
experimentalSingleTabRunMode: true,
|
|
supportFile: false,
|
|
devServer: {
|
|
bundler: 'webpack',
|
|
},
|
|
},
|
|
})
|