mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 14:17:57 +08:00
Revert font awesome 5 changes
We are still pushing ahead on this 100% just need a bit longer to prepare all plugins
This commit is contained in:
@ -1,36 +0,0 @@
|
||||
import { moduleForWidget, widgetTest } from "helpers/widget-test";
|
||||
|
||||
moduleForWidget("avatar-flair");
|
||||
|
||||
widgetTest("avatar flair with an icon", {
|
||||
template: '{{mount-widget widget="avatar-flair" args=args}}',
|
||||
beforeEach() {
|
||||
this.set("args", {
|
||||
primary_group_flair_url: "fa-bars",
|
||||
primary_group_flair_bg_color: "CC0000",
|
||||
primary_group_flair_color: "FFFFFF"
|
||||
});
|
||||
},
|
||||
test(assert) {
|
||||
assert.ok(this.$(".avatar-flair").length, "it has the tag");
|
||||
assert.ok(this.$("svg.d-icon-bars").length, "it has the svg icon");
|
||||
assert.equal(
|
||||
this.$(".avatar-flair").attr("style"),
|
||||
"background-color: #CC0000; color: #FFFFFF; ",
|
||||
"it has styles"
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
widgetTest("avatar flair with an image", {
|
||||
template: '{{mount-widget widget="avatar-flair" args=args}}',
|
||||
beforeEach() {
|
||||
this.set("args", {
|
||||
primary_group_flair_url: "/images/avatar.png"
|
||||
});
|
||||
},
|
||||
test(assert) {
|
||||
assert.ok(this.$(".avatar-flair").length, "it has the tag");
|
||||
assert.ok(this.$("svg").length === 0, "it does not have an svg icon");
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user