mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08:00
40 lines
996 B
JavaScript
40 lines
996 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Topic Notifications button", {
|
|
loggedIn: true,
|
|
beforeEach() {
|
|
const response = object => {
|
|
return [200, { "Content-Type": "application/json" }, object];
|
|
};
|
|
|
|
// prettier-ignore
|
|
server.post("/t/280/notifications", () => { // eslint-disable-line no-undef
|
|
return response({});
|
|
});
|
|
}
|
|
});
|
|
|
|
QUnit.test("Updating topic notification level", assert => {
|
|
const notificationOptions = selectKit(
|
|
"#topic-footer-buttons .topic-notifications-options"
|
|
);
|
|
|
|
visit("/t/internationalization-localization/280");
|
|
|
|
andThen(() => {
|
|
assert.ok(
|
|
notificationOptions.exists(),
|
|
"it should display the notification options button in the topic's footer"
|
|
);
|
|
});
|
|
|
|
notificationOptions.expand().selectRowByValue("3");
|
|
|
|
andThen(() => {
|
|
assert.equal(
|
|
notificationOptions.selectedRow().name(),
|
|
"Watching",
|
|
"it should display the right notification level"
|
|
);
|
|
});
|
|
});
|