From 193415ac1d4d93875f19a5640d758a140011b266 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Tue, 6 Sep 2022 01:25:28 +0530 Subject: [PATCH] Add configurable variables --- cypress.config.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cypress.config.ts b/cypress.config.ts index 6761d05d..02f39392 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -6,6 +6,12 @@ export default defineConfig({ require("./cypress/plugins/index.ts").default(on, config); return config; }, - baseUrl: "http://localhost:3000", + 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", }, });