mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
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",
|
|
},
|
|
});
|