Github user merrimanr commented on the issue: https://github.com/apache/metron/pull/858 @ottobackwards I also added a way to run the e2e tests locally. Once your Docker app is up and running locally, get the $DOCKER_HOST ip address and replace "localhost" with that ip address in `metron-interface/metron-alerts/protractor.conf.js` (should be 3 places you have to update). Mine looks something like this: ``` exports.config = { ... baseUrl: 'http://192.168.99.100:4201/', ... params: { rest: { url: '192.168.99.100:8082' }, elasticsearch: { url: '192.168.99.100:9210' } } } ``` Then you can run the e2e tests with `cd metron-interface/metron-alerts && npm run e2e`
---