mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 15:31:36 +03:00
19 lines
569 B
TypeScript
19 lines
569 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
module.exports = defineConfig({
|
|
projectId: 'r1wrqr',
|
|
e2e: {
|
|
supportFile: './src/support/index.ts',
|
|
specPattern: './src/integration',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
fileServerFolder: '.',
|
|
fixturesFolder: './src/fixtures',
|
|
video: false,
|
|
// videosFolder: '../../dist/cypress/apps/ligo-virgo-e2e/videos',
|
|
screenshotsFolder: '../../dist/cypress/apps/ligo-virgo-e2e/screenshots',
|
|
chromeWebSecurity: false,
|
|
});
|