1
0
mirror of https://github.com/quay/quay.git synced 2026-01-29 08:42:15 +03:00
Files
quay/web/cypress.config.ts
Brandon Caton 3ad9460846 ui: adding tag history panel (PROJQUAY-5720) (#2115)
Implements the tag history view.
2023-08-28 12:13:50 -04:00

19 lines
451 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,
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
viewportWidth: 1280,
viewportHeight: 800,
});