11 lines
331 B
TypeScript
11 lines
331 B
TypeScript
import { defineConfig } from "cypress";
|
|
import {addMatchImageSnapshotPlugin} from 'cypress-image-snapshot/plugin';
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://0.0.0.0:3333/',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
addMatchImageSnapshotPlugin(on, config)
|
|
},
|
|
}
|
|
});
|