mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:51:50 +08:00
78 lines
1.7 KiB
JavaScript
78 lines
1.7 KiB
JavaScript
import { acceptance, replaceCurrentUser } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Managing Group Interaction Settings", {
|
|
loggedIn: true,
|
|
settings: {
|
|
email_in: true
|
|
}
|
|
});
|
|
|
|
QUnit.test("As an admin", async assert => {
|
|
await visit("/groups/discourse/manage/interaction");
|
|
|
|
assert.equal(
|
|
find(".groups-form-visibility-level").length,
|
|
1,
|
|
"it should display visibility level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-mentionable-level").length,
|
|
1,
|
|
"it should display mentionable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-messageable-level").length,
|
|
1,
|
|
"it should display messageable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-incoming-email").length,
|
|
1,
|
|
"it should display incoming email input"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-default-notification-level").length,
|
|
1,
|
|
"it should display default notification level input"
|
|
);
|
|
});
|
|
|
|
QUnit.test("As a group owner", async assert => {
|
|
replaceCurrentUser({ admin: false, staff: false });
|
|
await visit("/groups/discourse/manage/interaction");
|
|
|
|
assert.equal(
|
|
find(".groups-form-visibility-level").length,
|
|
0,
|
|
"it should display visibility level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-mentionable-level").length,
|
|
1,
|
|
"it should display mentionable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-messageable-level").length,
|
|
1,
|
|
"it should display messageable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-incoming-email").length,
|
|
0,
|
|
"it should not display incoming email input"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-default-notification-level").length,
|
|
1,
|
|
"it should display default notification level input"
|
|
);
|
|
});
|