mirror of
https://github.com/discourse/discourse.git
synced 2025-04-17 06:50:15 +08:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Signing In - Mobile", { mobileView: true });
|
|
|
|
QUnit.test("sign in", assert => {
|
|
visit("/");
|
|
click("header .login-button");
|
|
andThen(() => {
|
|
assert.ok(exists('#login-form'), "it shows the login modal");
|
|
});
|
|
}); |