mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 00:32:52 +08:00
Revert "Rename all test files from JS -> ES6"
This reverts commit 2abe85b8344de1102c1589a9ac9421a8b296f2b5.
This commit is contained in:
@ -1,74 +0,0 @@
|
||||
import { moduleForWidget, widgetTest } from "helpers/widget-test";
|
||||
|
||||
moduleForWidget("header");
|
||||
|
||||
widgetTest("rendering basics", {
|
||||
template: '{{mount-widget widget="header"}}',
|
||||
test(assert) {
|
||||
assert.ok(find("header.d-header").length);
|
||||
assert.ok(find("#site-logo").length);
|
||||
}
|
||||
});
|
||||
|
||||
widgetTest("sign up / login buttons", {
|
||||
template:
|
||||
'{{mount-widget widget="header" showCreateAccount=(action "showCreateAccount") showLogin=(action "showLogin") args=args}}',
|
||||
anonymous: true,
|
||||
|
||||
beforeEach() {
|
||||
this.set("args", { canSignUp: true });
|
||||
this.on("showCreateAccount", () => (this.signupShown = true));
|
||||
this.on("showLogin", () => (this.loginShown = true));
|
||||
},
|
||||
|
||||
async test(assert) {
|
||||
assert.ok(find("button.sign-up-button").length);
|
||||
assert.ok(find("button.login-button").length);
|
||||
|
||||
await click("button.sign-up-button");
|
||||
assert.ok(this.signupShown);
|
||||
|
||||
await click("button.login-button");
|
||||
assert.ok(this.loginShown);
|
||||
}
|
||||
});
|
||||
|
||||
widgetTest("anon when login required", {
|
||||
template:
|
||||
'{{mount-widget widget="header" showCreateAccount=(action "showCreateAccount") showLogin=(action "showLogin") args=args}}',
|
||||
anonymous: true,
|
||||
|
||||
beforeEach() {
|
||||
this.set("args", { canSignUp: true });
|
||||
this.on("showCreateAccount", () => (this.signupShown = true));
|
||||
this.on("showLogin", () => (this.loginShown = true));
|
||||
this.siteSettings.login_required = true;
|
||||
},
|
||||
|
||||
test(assert) {
|
||||
assert.ok(exists("button.login-button"));
|
||||
assert.ok(exists("button.sign-up-button"));
|
||||
assert.ok(!exists("#search-button"));
|
||||
assert.ok(!exists("#toggle-hamburger-menu"));
|
||||
}
|
||||
});
|
||||
|
||||
widgetTest("logged in when login required", {
|
||||
template:
|
||||
'{{mount-widget widget="header" showCreateAccount=(action "showCreateAccount") showLogin=(action "showLogin") args=args}}',
|
||||
|
||||
beforeEach() {
|
||||
this.set("args", { canSignUp: true });
|
||||
this.on("showCreateAccount", () => (this.signupShown = true));
|
||||
this.on("showLogin", () => (this.loginShown = true));
|
||||
this.siteSettings.login_required = true;
|
||||
},
|
||||
|
||||
test(assert) {
|
||||
assert.ok(!exists("button.login-button"));
|
||||
assert.ok(!exists("button.sign-up-button"));
|
||||
assert.ok(exists("#search-button"));
|
||||
assert.ok(exists("#toggle-hamburger-menu"));
|
||||
assert.ok(exists("#current-user"));
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user