0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-21 09:08:59 +02:00
synapse/syweb/webclient/test/e2e/home.spec.js

16 lines
499 B
JavaScript

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