FIX: Translate none-tag and all-tags labels in tag filter (#9030)

* FIX: Translate none-tag and all-tags labels in tag filter
* Add test
This commit is contained in:
Penar Musaraj
2020-02-24 15:57:24 -05:00
committed by GitHub
parent 709772ea52
commit d6a603cc50
2 changed files with 24 additions and 3 deletions

View File

@@ -75,5 +75,18 @@ componentTest("default", {
// exists(row.el().find(".category-desc")),
// "it shows category description for newcomers"
// );
const content = this.subject.displayedContent();
assert.equal(
content[0].name,
I18n.t("tagging.selector_no_tags"),
"it has the translated label for no-tags"
);
assert.equal(
content[1].name,
I18n.t("tagging.selector_all_tags"),
"it has the correct label for all-tags"
);
}
});