discourse/test/javascripts/acceptance/topic-notifications-button-...

41 lines
997 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
];
};
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"
);
});
});