From e9564c999fa6d4759d1e0b1523b8d92ffad3f9b8 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 6 May 2019 18:19:45 -0400 Subject: [PATCH] FIX: We just show likes to see like count --- test/javascripts/widgets/post-test.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/javascripts/widgets/post-test.js.es6 b/test/javascripts/widgets/post-test.js.es6 index f3aeec4028a..e8511f54516 100644 --- a/test/javascripts/widgets/post-test.js.es6 +++ b/test/javascripts/widgets/post-test.js.es6 @@ -144,7 +144,7 @@ widgetTest("like count button", { actions_summary: [{ id: 2, count: 1, hidden: false, can_act: true }] }); this.set("post", post); - this.set("args", { likeCount: 1 }); + this.set("args", { likeCount: 1, showLike: true }); }, async test(assert) { assert.ok(find("button.like-count").length === 1);