Skip to content

Commit

Permalink
refactor(main): fixed styling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
onderceylan committed May 14, 2020
1 parent 31b9cda commit 58b8160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe('generates meta', () => {
const readManifest = (): Promise<{ icons: ManifestJsonIcon[] }> =>
file
.readFile('./temp/manifest.json')
.then(resp => JSON.parse((resp as unknown) as string));
.then((resp) => JSON.parse((resp as unknown) as string));

test('creating icons array', async () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
Expand Down Expand Up @@ -474,7 +474,7 @@ describe('visually compares generated images with', () => {
);

return result.savedImages.map((savedImage: SavedImage) => {
const matchedSnapshot = snapshots.find(snapshot =>
const matchedSnapshot = snapshots.find((snapshot) =>
snapshot.includes(savedImage.name),
);

Expand Down

0 comments on commit 58b8160

Please sign in to comment.