mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-30 12:49:58 +00:00

* Cypress: Fixed failing cypress for role page * fixed data quality test * fixed memory getting full and cypress getting crush issue * fixed explore page getting unresponsive
23 lines
636 B
TypeScript
23 lines
636 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,
|
|
numTestsKeptInMemory: 0,
|
|
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}',
|
|
},
|
|
});
|