diff --git a/e2e-commons/README.md b/e2e-commons/README.md index 58f63d32..7fb30495 100644 --- a/e2e-commons/README.md +++ b/e2e-commons/README.md @@ -4,21 +4,23 @@ Common scripts and configuration for the end-to-end tests. ## Usage +Spin up parity networks, redis, rabbit, e2e container needed for end-to-end tests: + ``` ./up.sh [components] ``` -Spins up parity networks, redis, rabbit, e2e container needed for end-to-end tests. + +Shut down and cleans up containers, networks, services, running scripts: ``` ./down.sh ``` -Shuts down and cleans up containers, networks, services, running scripts. ### Components | Component | Description | | --- | --- | | deploy | Deploys the Smart Contracts | -| oracle | Launches oracle containers | -| ui | launches UI containers | -| blocks | Mines blocks | +| oracle | Launches Oracle containers | +| ui | Launches UI containers | +| blocks | Auto mines blocks | diff --git a/ui-e2e/User.js b/ui-e2e/User.js index ec26ae01..41f9d35d 100644 --- a/ui-e2e/User.js +++ b/ui-e2e/User.js @@ -5,7 +5,7 @@ const MainPage = require('./mainPage.js').MainPage; class User { constructor(driver, obj) { try { - this.driver = driver; + this.driver = driver; this.account = obj.account; this.privateKey = obj.privateKey; this.networkID = obj.networkID;