19 lines
316 B
TypeScript
19 lines
316 B
TypeScript
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
viewportWidth: 1280,
|
|
viewportHeight: 720,
|
|
video: false,
|
|
},
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: 'next',
|
|
bundler: 'webpack',
|
|
},
|
|
video: false,
|
|
},
|
|
});
|