mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 21:55:25 +08:00
Revert "Rename all test files from JS -> ES6"
This reverts commit 2abe85b8344de1102c1589a9ac9421a8b296f2b5.
This commit is contained in:
@ -1,46 +0,0 @@
|
||||
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
||||
|
||||
acceptance("Managing Group Profile");
|
||||
QUnit.test("As an anonymous user", async assert => {
|
||||
await visit("/g/discourse/manage/profile");
|
||||
|
||||
assert.ok(
|
||||
count(".group-members tr") > 0,
|
||||
"it should redirect to members page for an anonymous user"
|
||||
);
|
||||
});
|
||||
|
||||
acceptance("Managing Group Profile", { loggedIn: true });
|
||||
|
||||
QUnit.test("As an admin", async assert => {
|
||||
await visit("/g/discourse/manage/profile");
|
||||
|
||||
assert.ok(
|
||||
find(".group-flair-inputs").length === 1,
|
||||
"it should display avatar flair inputs"
|
||||
);
|
||||
assert.ok(
|
||||
find(".group-form-bio").length === 1,
|
||||
"it should display group bio input"
|
||||
);
|
||||
assert.ok(
|
||||
find(".group-form-name").length === 1,
|
||||
"it should display group name input"
|
||||
);
|
||||
assert.ok(
|
||||
find(".group-form-full-name").length === 1,
|
||||
"it should display group full name input"
|
||||
);
|
||||
});
|
||||
|
||||
QUnit.test("As a group owner", async assert => {
|
||||
updateCurrentUser({ moderator: false, admin: false });
|
||||
|
||||
await visit("/g/discourse/manage/profile");
|
||||
|
||||
assert.equal(
|
||||
find(".group-form-name").length,
|
||||
0,
|
||||
"it should not display group name input"
|
||||
);
|
||||
});
|
Reference in New Issue
Block a user