mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 22:33:37 +08:00
5b276af921
* Remove unused Discourse.SiteSettings * Remove `Discourse.SiteSettings` from many tests * REFACTOR: `lib:formatter` was using a lot of leaky state * Remove more `Discourse.SiteSettings` from tests * More SiteSettings removed from tests
40 lines
1018 B
JavaScript
40 lines
1018 B
JavaScript
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Email Disabled Banner", {
|
|
loggedIn: true
|
|
});
|
|
|
|
QUnit.test("when disabled", async function(assert) {
|
|
this.siteSettings.disable_emails = "no";
|
|
await visit("/");
|
|
assert.notOk(
|
|
exists(".alert-emails-disabled"),
|
|
"alert is not displayed when email enabled"
|
|
);
|
|
});
|
|
|
|
QUnit.test("when enabled", async function(assert) {
|
|
this.siteSettings.disable_emails = "yes";
|
|
await visit("/latest");
|
|
assert.ok(
|
|
exists(".alert-emails-disabled"),
|
|
"alert is displayed when email disabled"
|
|
);
|
|
});
|
|
|
|
QUnit.test("when non-staff", async function(assert) {
|
|
this.siteSettings.disable_emails = "non-staff";
|
|
await visit("/");
|
|
assert.ok(
|
|
exists(".alert-emails-disabled"),
|
|
"alert is displayed when email disabled for non-staff"
|
|
);
|
|
|
|
updateCurrentUser({ moderator: true });
|
|
await visit("/");
|
|
assert.ok(
|
|
exists(".alert-emails-disabled"),
|
|
"alert is displayed to staff when email disabled for non-staff"
|
|
);
|
|
});
|