Skip to content

Commit

Permalink
chore: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark1626 committed Jul 28, 2019
1 parent 2c2b730 commit a2e6f88
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 a2e6f88

Please sign in to comment.