mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
|
import { defineConfig } from 'cypress'
|
||
|
import { webpackConfig } from './cypress/support/webpack.cypress'
|
||
|
|
||
|
export default defineConfig({
|
||
|
fixturesFolder: 'cypress/fixtures',
|
||
|
video: false,
|
||
|
viewportHeight: 800,
|
||
|
viewportWidth: 800,
|
||
|
component: {
|
||
|
devServer: {
|
||
|
framework: 'react',
|
||
|
bundler: 'webpack',
|
||
|
webpackConfig,
|
||
|
},
|
||
|
setupNodeEvents(on, config) {
|
||
|
//
|
||
|
},
|
||
|
specPattern:
|
||
|
'./{test,modules/**/test}/frontend/components/**/*.spec.{js,ts,tsx}',
|
||
|
},
|
||
|
})
|