mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 14:03:39 +08:00
DEV: Use async/await instead of andThen()
This commit is contained in:
parent
fe2d5da623
commit
6e3fe1abba
|
@ -13,41 +13,35 @@ acceptance("Poll Builder - polls are disabled", {
|
|||
}
|
||||
});
|
||||
|
||||
test("regular user - sufficient trust level", assert => {
|
||||
test("regular user - sufficient trust level", async assert => {
|
||||
updateCurrentUser({ moderator: false, admin: false, trust_level: 3 });
|
||||
|
||||
displayPollBuilderButton();
|
||||
await displayPollBuilderButton();
|
||||
|
||||
andThen(() => {
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
||||
test("regular user - insufficient trust level", assert => {
|
||||
test("regular user - insufficient trust level", async assert => {
|
||||
updateCurrentUser({ moderator: false, admin: false, trust_level: 1 });
|
||||
|
||||
displayPollBuilderButton();
|
||||
await displayPollBuilderButton();
|
||||
|
||||
andThen(() => {
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
||||
test("staff", assert => {
|
||||
test("staff", async assert => {
|
||||
updateCurrentUser({ moderator: true });
|
||||
|
||||
displayPollBuilderButton();
|
||||
await displayPollBuilderButton();
|
||||
|
||||
andThen(() => {
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user