vector-im-hydrogen-web/cypress.config.ts

12 lines
282 B
TypeScript
Raw Normal View History

2022-08-29 10:56:13 +02:00
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
require("./cypress/plugins/index.ts").default(on, config);
return config;
},
baseUrl: "http://localhost:3000",
},
2022-08-29 10:56:13 +02:00
});