mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-07 20:22:11 -04:00
Move webclient to a python module so that it can be installed
This commit is contained in:
parent
020fc15d98
commit
89ba802b23
75 changed files with 1 additions and 1 deletions
16
syweb/webclient/test/e2e/home.spec.js
Normal file
16
syweb/webclient/test/e2e/home.spec.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
var env = require("../environment-protractor.js");
|
||||
|
||||
describe("home page", function() {
|
||||
|
||||
beforeEach(function() {
|
||||
ptor = protractor.getInstance();
|
||||
// FIXME we use longpoll on the event stream, and I can't get $interval
|
||||
// playing nicely with it. Patches welcome to fix this.
|
||||
ptor.ignoreSynchronization = true;
|
||||
});
|
||||
|
||||
it("should have a title", function() {
|
||||
browser.get(env.baseUrl);
|
||||
expect(browser.getTitle()).toEqual("[matrix]");
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue