Files
discourse/test/javascripts/components/pinned-options-test.js.es6
T

47 lines
920 B
JavaScript
Raw Normal View History

2018-06-15 17:03:24 +02:00
import componentTest from "helpers/component-test";
import Topic from "discourse/models/topic";
2017-11-21 11:53:09 +01:00
const buildTopic = function() {
return Topic.create({
id: 1234,
title: "Qunit Test Topic",
deleted: false,
pinned: true
});
};
2018-06-15 17:03:24 +02:00
moduleForComponent("pinned-options", {
2017-12-22 13:08:12 +01:00
integration: true,
beforeEach: function() {
2018-06-15 17:03:24 +02:00
this.set("subject", selectKit());
2017-12-22 13:08:12 +01:00
}
});
2017-11-21 11:53:09 +01:00
2018-06-15 17:03:24 +02:00
componentTest("updating the content refreshes the list", {
template: "{{pinned-options value=pinned topic=topic}}",
2017-11-21 11:53:09 +01:00
beforeEach() {
this.siteSettings.automatically_unpin_topics = false;
this.set("topic", buildTopic());
this.set("pinned", true);
},
async test(assert) {
assert.equal(
this.get("subject")
.header()
.name(),
"pinned"
);
2017-11-21 11:53:09 +01:00
await this.set("pinned", false);
2017-11-21 11:53:09 +01:00
assert.equal(
this.get("subject")
.header()
.name(),
"unpinned"
);
2017-11-21 11:53:09 +01:00
}
});