Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpojer committed May 23, 2017
1 parent 629ded4 commit a3ef627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-haste-map/src/__tests__/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ describe('HasteMap', () => {
const e = mockEmitters['/fruits'];
e.emit('all', 'change', 'pear.js', '/fruits', MOCK_STAT);
e.emit('all', 'add', 'blueberry.js', '/fruits', MOCK_STAT);
let {hasteFS, moduleMap} = await waitForItToChange(hm);
const {hasteFS, moduleMap} = await waitForItToChange(hm);
expect(hasteFS.exists('/fruits/blueberry.js')).toBe(true);
// should be `null`
expect(moduleMap.getModule('Pear')).not.toBe(null);
Expand Down

0 comments on commit a3ef627

Please sign in to comment.