mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
21 lines
557 B
TypeScript
21 lines
557 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
fixturesFolder: false,
|
|
fileServerFolder: '.',
|
|
video: true,
|
|
projectId: 'z6eb6h',
|
|
viewportWidth: 1440,
|
|
viewportHeight: 720,
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
return require('./e2e/plugins/index.js')(on, config);
|
|
},
|
|
excludeSpecPattern: '*.js.map',
|
|
specPattern: 'e2e/integration/**/*.{js,jsx,ts,tsx}',
|
|
supportFile: false,
|
|
},
|
|
});
|