Skip to content

Commit

Permalink
Fix prettier lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jun 9, 2017
1 parent bc2c147 commit b33d5f4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/jest-resolve/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ class Resolver {
}

static findNodeModule(path: Path, options: FindNodeModuleConfig): ?Path {
/* $FlowFixMe */
const resolver = options.resolver ? require(options.resolver) : defaultResolver;
const resolver = options.resolver
/* $FlowFixMe */
? require(options.resolver)
: defaultResolver;
const paths = options.paths;

try {
Expand Down

0 comments on commit b33d5f4

Please sign in to comment.