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

18 lines
436 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;
},
2022-09-05 21:55:28 +02:00
baseUrl: "http://127.0.0.1:3000",
},
env: {
SYNAPSE_IP_ADDRESS: "172.18.0.5",
SYNAPSE_PORT: "8008",
DEX_IP_ADDRESS: "172.18.0.4",
DEX_PORT: "5556",
},
2022-08-29 10:56:13 +02:00
});