Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ElviraBurchik committed Mar 25, 2022
1 parent 1f59f58 commit c086039
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions fixture/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@types/pngjs": "^6.0.1",
"detox": "^19.5.7",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"react": "17.0.2",
"react-native": "0.67.4",
"react-native-fast-image": "^8.5.11",
Expand Down
3 changes: 2 additions & 1 deletion fixture/src/Detox/PixelDifference.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pixelmatch from "pixelmatch";
import * as fs from "fs";

import pixelmatch from "pixelmatch";
import { PNG } from "pngjs";

export const pixelDifference = (
Expand Down
2 changes: 1 addition & 1 deletion fixture/src/Detox/SnapshotAsserts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as path from "path";
import { ensureArtifactsLocation, saveDiff } from "./SnapshotLocation";

import { ensureArtifactsLocation, saveDiff } from "./SnapshotLocation";
import { pixelDifference } from "./PixelDifference";

export const assertSnapshot = (snapshotPath: string, testName: string) => {
Expand Down
1 change: 1 addition & 0 deletions fixture/src/Detox/SnapshotLocation.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as path from "path";
import * as fs from "fs";

import detox from "detox";
import { PNG } from "pngjs";

Expand Down
5 changes: 5 additions & 0 deletions fixture/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5417,6 +5417,11 @@ pngjs@^4.0.1:
resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-4.0.1.tgz#f803869bb2fc1bfe1bf99aa4ec21c108117cfdbe"
integrity sha512-rf5+2/ioHeQxR6IxuYNYGFytUyG3lma/WW1nsmjeHlWwtb2aByla6dkVc8pmJ9nplzkTA0q2xx7mMWrOTqT4Gg==

pngjs@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-6.0.0.tgz#ca9e5d2aa48db0228a52c419c3308e87720da821"
integrity sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==

posix-character-classes@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
Expand Down

0 comments on commit c086039

Please sign in to comment.