summary refs log tree commit diff
path: root/webclient/test/README
diff options
context:
space:
mode:
Diffstat (limited to 'webclient/test/README')
-rw-r--r--webclient/test/README33
1 files changed, 0 insertions, 33 deletions
diff --git a/webclient/test/README b/webclient/test/README
deleted file mode 100644
index 1a7bc832c7..0000000000
--- a/webclient/test/README
+++ /dev/null
@@ -1,33 +0,0 @@
-Requires:
- - nodejs/npm
- - npm install karma
- - npm install jasmine
- - npm install protractor (e2e testing)
-
-Setting up continuous integration / run the unit tests (make sure you're in
-this directory so it can find the config file):
-  karma start
-
-
-Setting up e2e tests (only if you don't have a selenium server to run the tests
-on. If you do, edit the config to point to that url):
-
-  webdriver-manager update
-  webdriver-manager start
-
-  Create a file "environment-protractor.js" in this directory and type:
-    module.exports = {
-        seleniumAddress: 'http://localhost:4444/wd/hub',
-        baseUrl: "http://localhost:8008",
-        username: "YOUR_TEST_USERNAME",
-        password: "YOUR_TEST_PASSWORD"
-    }
-
-Running e2e tests:
-  protractor protractor.conf.js
-
-NOTE: This will create a public room on the target home server.
-
-
-
-