Move webclient to a python module so that it can be installed

This commit is contained in:
Mark Haines 2014-11-04 15:57:23 +00:00
parent 020fc15d98
commit 89ba802b23
75 changed files with 1 additions and 1 deletions

View 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]");
});
});