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

10 lines
278 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Signing In - Mobile", { mobileView: true });
QUnit.test("sign in", async assert => {
await visit("/");
await click("header .login-button");
assert.ok(exists("#login-form"), "it shows the login modal");
2018-06-15 11:03:24 -04:00
});