Skip to content

Commit

Permalink
fixup prettier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlundien committed Jul 10, 2023
1 parent 910bfd2 commit 56462a1
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 331 deletions.
6 changes: 3 additions & 3 deletions src/components/__fixtures__/helpers.js
@@ -1,6 +1,6 @@
import { mount } from "@vue/test-utils";
import FontAwesomeIcon from "../FontAwesomeIcon";
import { parse } from "@fortawesome/fontawesome-svg-core";
import { mount } from '@vue/test-utils'
import FontAwesomeIcon from '../FontAwesomeIcon'
import { parse } from '@fortawesome/fontawesome-svg-core'

export function compileAndMount(definition, props = {}) {
return mount(definition, { props })
Expand Down
32 changes: 16 additions & 16 deletions src/components/__fixtures__/icons.js
@@ -1,23 +1,23 @@
export const faCoffee = {
prefix: "fas",
iconName: "coffee",
icon: [640, 512, [], "f001", "..."],
};
prefix: 'fas',
iconName: 'coffee',
icon: [640, 512, [], 'f001', '...']
}

export const faCircle = {
prefix: "fas",
iconName: "circle",
icon: [640, 512, [], "f002", "..."],
};
prefix: 'fas',
iconName: 'circle',
icon: [640, 512, [], 'f002', '...']
}

export const faAlien = {
prefix: "fad",
iconName: "alien",
icon: [640, 512, [], "f003", "..."],
};
prefix: 'fad',
iconName: 'alien',
icon: [640, 512, [], 'f003', '...']
}

export const faDog = {
prefix: "fass",
iconName: "dog",
icon: [640, 512, [], "f200", "..."],
};
prefix: 'fass',
iconName: 'dog',
icon: [640, 512, [], 'f200', '...']
}

0 comments on commit 56462a1

Please sign in to comment.