mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
95acf63ea3
This uses the ignoreSynchronization flag because of the longpoll on the event stream. It would be better to use $interval, but couldn't get that to *reliably* work when testing. I suspect that $interval won't help us here, since there is genuinely an open $http connection, as we're doing a long poll. https://github.com/angular/protractor/issues/49 for more info.
34 lines
838 B
Plaintext
34 lines
838 B
Plaintext
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.
|
|
|
|
|
|
|
|
|