DEV: fix some deprecated SVG icon refs

This commit is contained in:
Penar Musaraj
2019-01-22 14:42:00 -05:00
parent 62adc2eb98
commit 9886934ef5
26 changed files with 52 additions and 48 deletions

View File

@ -6,7 +6,7 @@ widgetTest("icon only button", {
template: '{{mount-widget widget="button" args=args}}',
beforeEach() {
this.set("args", { icon: "smile-o" });
this.set("args", { icon: "far-smile" });
},
test(assert) {
@ -15,7 +15,7 @@ widgetTest("icon only button", {
"it has all the classes"
);
assert.ok(
this.$("button .d-icon.d-icon-smile-o").length,
this.$("button .d-icon.d-icon-far-smile").length,
"it has the icon"
);
}