mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-28 20:00:09 +00:00
22 lines
609 B
TypeScript
22 lines
609 B
TypeScript
![]() |
import { defineConfig } from 'cypress';
|
||
|
import plugins from './cypress/plugins/index.js';
|
||
|
|
||
|
export default defineConfig({
|
||
|
projectId: 'a9yxci',
|
||
|
viewportWidth: 1240,
|
||
|
viewportHeight: 660,
|
||
|
watchForFileChanges: false,
|
||
|
defaultCommandTimeout: 5000,
|
||
|
videoUploadOnPasses: false,
|
||
|
chromeWebSecurity: false,
|
||
|
e2e: {
|
||
|
// We've imported your old cypress plugins here.
|
||
|
// You may want to clean this up later by importing these.
|
||
|
setupNodeEvents(on, config) {
|
||
|
return plugins(on, config);
|
||
|
},
|
||
|
baseUrl: 'http://localhost:8585',
|
||
|
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
|
||
|
},
|
||
|
});
|