discourse/test/javascripts/acceptance/mobile-sign-in-test.js.es6

11 lines
285 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Signing In - Mobile", { mobileView: true });
2017-06-14 13:57:58 -04:00
QUnit.test("sign in", assert => {
visit("/");
click("header .login-button");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(exists('#login-form'), "it shows the login modal");
});
2017-06-14 13:57:58 -04:00
});