mirror of
https://github.com/quay/quay.git
synced 2026-01-29 08:42:15 +03:00
* ui: clear state on delete autoprune policies (PROJQUAY-8003) * add retries to tests + triggering click
20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
import {defineConfig} from 'cypress';
|
|
|
|
export default defineConfig({
|
|
chromeWebSecurity: false, // Required for stripe integration tests
|
|
e2e: {
|
|
env: {
|
|
REACT_QUAY_APP_API_URL: 'http://localhost:8080',
|
|
},
|
|
baseUrl: 'http://localhost:9000',
|
|
video: false,
|
|
defaultCommandTimeout: 25000,
|
|
retries: 3,
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
viewportWidth: 1280,
|
|
viewportHeight: 800,
|
|
});
|