mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
12 lines
417 B
TypeScript
12 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
|
||
|
|
},
|
||
|
|
});
|