diff --git a/test/javascripts/widgets/post-test.js.es6 b/test/javascripts/widgets/post-test.js.es6
index 8f205591a01..9dc9754aa46 100644
--- a/test/javascripts/widgets/post-test.js.es6
+++ b/test/javascripts/widgets/post-test.js.es6
@@ -16,6 +16,24 @@ widgetTest("basic elements", {
}
});
+widgetTest("post - links", {
+ template: '{{mount-widget widget="post-contents" args=args}}',
+ beforeEach() {
+ this.set("args", {
+ cooked:
+ "first link and second link",
+ linkCounts: [
+ { url: "http://link1.example.com/", clicks: 1, internal: true },
+ { url: "http://link2.example.com/", clicks: 2, internal: true }
+ ]
+ });
+ },
+ async test(assert) {
+ assert.equal(find(".badge.clicks:nth(0)").text(), "1");
+ assert.equal(find(".badge.clicks:nth(1)").text(), "2");
+ }
+});
+
widgetTest("wiki", {
template:
'{{mount-widget widget="post" args=args showHistory=(action "showHistory")}}',