mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
11 lines
417 B
TypeScript
11 lines
417 B
TypeScript
// eslint-disable-next-line import/no-extraneous-dependencies -- cypress SHOULD be a dev dependency
|
|
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
video: false, // TODO: can it be useful for CI?
|
|
screenshotOnRunFailure: false, // TODO: can it be useful for CI?
|
|
defaultCommandTimeout: 8000, // sometimes the app takes longer to load, especially in the CI
|
|
e2e: {
|
|
// defaults
|
|
},
|
|
});
|