mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
const { defineConfig } = require("cypress");
|
|
const getCompareSnapshotsPlugin = require("cypress-image-diff-js/dist/plugin");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
getCompareSnapshotsPlugin(on, config);
|
|
},
|
|
},
|
|
});
|