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

48 lines
978 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import componentTest from "helpers/component-test";
import Topic from "discourse/models/topic";
2017-09-11 19:36:58 -04:00
const buildTopic = function(level) {
2017-09-11 19:36:58 -04:00
return Topic.create({
id: 4563,
title: "Qunit Test Topic",
details: {
notification_level: level
2017-09-11 19:36:58 -04:00
}
});
};
2018-06-15 11:03:24 -04:00
moduleForComponent("topic-notifications-button", { integration: true });
2017-09-11 19:36:58 -04:00
2018-06-15 11:03:24 -04:00
componentTest("the header has a localized title", {
template:
"{{topic-notifications-button notificationLevel=topic.details.notification_level topic=topic}}",
2017-09-11 19:36:58 -04:00
beforeEach() {
this.set("topic", buildTopic(1));
2017-09-11 19:36:58 -04:00
},
test(assert) {
andThen(() => {
2018-06-15 11:03:24 -04:00
assert.equal(
selectKit()
.header()
.name(),
"Normal",
"it has the correct title"
);
2017-09-11 19:36:58 -04:00
});
this.set("topic", buildTopic(2));
2017-09-11 19:36:58 -04:00
andThen(() => {
2018-06-15 11:03:24 -04:00
assert.equal(
selectKit()
.header()
.name(),
"Tracking",
"it correctly changes the title"
);
2017-09-11 19:36:58 -04:00
});
}
});