mirror of
https://github.com/BreizhHardware/portfolio.git
synced 2026-01-18 16:37:22 +01:00
14 lines
386 B
TypeScript
14 lines
386 B
TypeScript
import { defineConfig } from "cypress";
|
|
import {addMatchImageSnapshotPlugin} from '@simonsmith/cypress-image-snapshot/plugin'
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
addMatchImageSnapshotPlugin(on);
|
|
},
|
|
specPattern: 'cypress/integration/**/*.js',
|
|
baseUrl: 'http://localhost:8080',
|
|
},
|
|
});
|