console/cypress.config.ts
Denis Badurina 7436c85fcd
E2E testing (#685)
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com>
Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
2022-12-02 10:12:07 +00:00

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
},
});