mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
2516a6a028
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7825 GitOrigin-RevId: 74e6009ae4fd3915c3c705194c8221dada4e21a6
25 lines
481 B
TypeScript
25 lines
481 B
TypeScript
import { defineConfig } from 'cypress';
|
|
import { nxE2EPreset } from '@nrwl/cypress/plugins/cypress-preset';
|
|
|
|
const nxConfig = nxE2EPreset(__dirname);
|
|
|
|
export default defineConfig({
|
|
viewportWidth: 1440,
|
|
viewportHeight: 900,
|
|
|
|
retries: {
|
|
openMode: 0,
|
|
// Allows for one automatic retry per test
|
|
// see: https://docs.cypress.io/guides/guides/test-retries#How-It-Works
|
|
runMode: 1,
|
|
},
|
|
|
|
projectId: '672jmv',
|
|
|
|
e2e: {
|
|
...nxConfig,
|
|
|
|
video: false,
|
|
},
|
|
});
|