Add test example to scrap a web page.

This commit is contained in:
Florian THIERRY
2025-03-31 23:03:24 +02:00
parent a39f84fdd2
commit 096baf9a3c
6 changed files with 152 additions and 1 deletions

9
cypress.config.js Normal file
View File

@@ -0,0 +1,9 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});