Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move missing require to import
  • Loading branch information
Miguel Jimenez Esun committed Oct 3, 2017
commit 092690d013171641386d8ab314af81a5fa034c47
4 changes: 2 additions & 2 deletions packages/jest-worker/src/child.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

'use strict';

const {
import {
CHILD_MESSAGE_CALL,
CHILD_MESSAGE_END,
CHILD_MESSAGE_INITIALIZE,
PARENT_MESSAGE_ERROR,
PARENT_MESSAGE_OK,
} = require('./types');
} from './types';

import type {ChildMessage} from './types';

Expand Down