set baseUrl for e2e testing

This commit is contained in:
Yisroel Baum 2025-11-02 22:44:37 +02:00
parent ab7368a886
commit 653567f8e2
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

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