1
0
Fork 0
mirror of https://github.com/lihop/godot-xterm.git synced 2025-04-24 16:28:29 +02:00
godot-xterm/test/html5/cypress.config.js
2024-03-29 19:41:26 +13:00

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);
},
},
});