Skip to content

Commit

Permalink
jest-editor-support: Fix liniting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mojadev committed Sep 3, 2018
1 parent 0398d4e commit 62135b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/jest-editor-support/src/Process.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ const convertWslPath = (maybePath: string): string => {
try {
return windowsToWslSync(maybePath);
} catch (exception) {
console.log(`Tried to translate ${maybePath} but received exception`, exception)
console.log(
`Tried to translate ${maybePath} but received exception`,
exception,
);
return maybePath;
}
}
};

0 comments on commit 62135b3

Please sign in to comment.