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:
Sam
2018-11-08 16:12:18 +11:00
parent 0232a3b5e5
commit 42572ff138
131 changed files with 2251 additions and 6736 deletions

View File

@ -11,7 +11,7 @@ componentTest("default theme", {
test(assert) {
assert.expect(1);
assert.equal(this.$(".d-icon-check").length, 1, "shows default theme icon");
assert.equal(this.$(".fa-check").length, 1, "shows default theme icon");
}
});
@ -26,15 +26,11 @@ componentTest("pending updates", {
test(assert) {
assert.expect(1);
assert.equal(
this.$(".d-icon-refresh").length,
1,
"shows pending update icon"
);
assert.equal(this.$(".fa-refresh").length, 1, "shows pending update icon");
}
});
componentTest("broken theme", {
componentTest("borken theme", {
template: "{{themes-list-item theme=theme}}",
beforeEach() {
this.set(
@ -49,7 +45,7 @@ componentTest("broken theme", {
test(assert) {
assert.expect(1);
assert.equal(
this.$(".d-icon-exclamation-circle").length,
this.$(".fa-exclamation-circle").length,
1,
"shows broken theme icon"
);