Make prettier happy
This commit is contained in:
committed by
Gerhard Schlager
parent
cff68ef0dd
commit
0bd27cd10b
@@ -7,8 +7,14 @@ QUnit.test("Enter as a anon user", async assert => {
|
||||
await click(".show-more-actions");
|
||||
|
||||
assert.ok(exists("#topic"), "The topic was rendered");
|
||||
assert.ok(exists("#post_1 .post-controls .edit"), "The edit button was not rendered");
|
||||
assert.ok(!exists(".show-post-admin-menu"), "The wrench button was not rendered");
|
||||
assert.ok(
|
||||
exists("#post_1 .post-controls .edit"),
|
||||
"The edit button was not rendered"
|
||||
);
|
||||
assert.ok(
|
||||
!exists(".show-post-admin-menu"),
|
||||
"The wrench button was not rendered"
|
||||
);
|
||||
});
|
||||
|
||||
acceptance("Post - Admin Menu", { loggedIn: true });
|
||||
@@ -18,6 +24,9 @@ QUnit.test("Enter as a user with group moderator permissions", async assert => {
|
||||
await click(".show-more-actions");
|
||||
await click(".show-post-admin-menu");
|
||||
|
||||
assert.ok(exists("#post_1 .post-controls .edit"), "The edit button was rendered");
|
||||
assert.ok(
|
||||
exists("#post_1 .post-controls .edit"),
|
||||
"The edit button was rendered"
|
||||
);
|
||||
assert.ok(exists(".add-notice"), "The add notice button was rendered");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user