Bug 36004: Fixed typo in successfully
[koha.git] / cypress.config.ts
1 import { defineConfig } from "cypress";
2
3 export default defineConfig({
4     fixturesFolder: "t/cypress/fixtures",
5     screenshotsFolder: "t/cypress/screenshots",
6     videosFolder: "t/cypress/videos",
7     defaultCommandTimeout: 10000,
8
9     e2e: {
10         experimentalStudio: true,
11         baseUrl: "http://localhost:8081",
12         specPattern: "t/cypress/integration/**/*.*",
13         supportFile: "t/cypress/support/e2e.js",
14     },
15
16     component: {
17         devServer: {
18             framework: "vue-cli",
19             bundler: "webpack",
20         },
21     },
22 });