1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { defineConfig } from 'cypress'
7 export default defineConfig({
8 chromeWebSecurity: false,
11 downloadsFolder: 'cypress/downloads',
12 videoCompression: false,
14 // We've imported your old cypress plugins here.
15 // You may want to clean this up later by importing these.
16 setupNodeEvents(on, config) {
17 return require('./cypress/plugins/index.js')(on, config)
19 baseUrl: 'https://localhost:3000/',
20 experimentalRunAllSpecs: true,
21 // The 2 options below make Electron crash a lot less and Firefox behave better
22 experimentalMemoryManagement: true,
23 numTestsKeptInMemory: 0,