synapse/webclient/test/e2e/user.spec.js

7 lines
202 B
JavaScript
Raw Normal View History

describe("user page", function() {
it("should have a title", function() {
browser.get("http://matrix.org/alpha/#/login");
expect(browser.getTitle()).toEqual("[matrix]");
});
});