From 446d9f8cc7f12fbbf3d8643f5d3414822a18c51d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 22 Aug 2019 15:12:44 +0200 Subject: Fix e2e tests --- client/e2e/proxy.config.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 client/e2e/proxy.config.json (limited to 'client/e2e') diff --git a/client/e2e/proxy.config.json b/client/e2e/proxy.config.json new file mode 100644 index 000000000..00bda5eb7 --- /dev/null +++ b/client/e2e/proxy.config.json @@ -0,0 +1,37 @@ +{ + "/api": { + "target": "http://localhost:9000", + "secure": false + }, + "/plugins": { + "target": "http://localhost:9000", + "secure": false + }, + "/themes": { + "target": "http://localhost:9000", + "secure": false + }, + "/static": { + "target": "http://localhost:9000", + "secure": false + }, + "/lazy-static": { + "target": "http://localhost:9000", + "secure": false + }, + "/socket.io": { + "target": "ws://localhost:9000", + "secure": false, + "ws": true + }, + "/!(client)**": { + "target": "http://localhost:3333/client/index.html", + "secure": false, + "logLevel": "debug" + }, + "/!(client)**/**": { + "target": "http://localhost:3333/client/index.html", + "secure": false, + "logLevel": "debug" + } +} -- cgit v1.2.3