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"); const { defineConfig } = require("cypress");
module.exports = defineConfig({ module.exports = defineConfig({
e2e: { e2e: {
setupNodeEvents(on, config) { baseUrl: 'http://localhost:8000',
// implement node event listeners here
}, },
},
}); });