Skip to content

Commit

Permalink
chore: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark1626 committed Aug 8, 2019
1 parent 24941fb commit b1a5b4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/jest-runner/src/runTest.ts
Expand Up @@ -114,8 +114,8 @@ async function runTestInternal(
? require('jest-circus/runner') // eslint-disable-line import/no-extraneous-dependencies
: require(config.testRunner);
const Runtime: typeof RuntimeClass = config.moduleLoader
? require(config.moduleLoader)
: require('jest-runtime');
? require(config.moduleLoader)
: require('jest-runtime');

let runtime: RuntimeClass | undefined = undefined;

Expand Down

0 comments on commit b1a5b4d

Please sign in to comment.