| /********************************************************************* |
| * Copyright (c) 2021 Boeing |
| * |
| * This program and the accompanying materials are made |
| * available under the terms of the Eclipse Public License 2.0 |
| * which is available at https://www.eclipse.org/legal/epl-2.0/ |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| * |
| * Contributors: |
| * Boeing - initial API and implementation |
| **********************************************************************/ |
| import { defineConfig } from 'cypress'; |
| |
| export default defineConfig({ |
| videosFolder: 'cypress/videos', |
| screenshotsFolder: 'cypress/screenshots', |
| fixturesFolder: 'cypress/fixtures', |
| e2e: { |
| // We've imported your old cypress plugins here. |
| // You may want to clean this up later by importing these. |
| setupNodeEvents(on, config) { |
| return require('./cypress/plugins/index.ts')(on, config); |
| }, |
| requestTimeout: 10000, |
| responseTimeout: 90000, |
| waitForAnimations: true, |
| baseUrl: 'http://localhost:4200', |
| }, |
| }); |