Skip to content

Commit

Permalink
Use ES module exports (jestjs#4454)
Browse files Browse the repository at this point in the history
* Use ESM exports in jest-config

* Use ESM exports in eslint-plugin-jest

* Use ESM exports in jest-changed-files

* Use ESM exports in jest-circus

* Use ESM exports in jest-diff

* Use ESM exports in jest-editor-support

* Use ESM exports in jest-haste-map

* Use ESM exports in jest-jasmine2

* Use ESM exports in jest-message-util

* Use ESM exports in jest-regex-util

* Use ESM exports in jest-repl

* Use ESM exports in jest-resolve

* Use ESM exports in jest-runner

* Use ESM exports in jest-runtime

* Use ESM exports in jest-snapshot

* Use ESM exports in jest-test-typescript-parser

* Use ESM exports in jest-util

* Use ESM exports in jest-validate

* Fix flow errors

* Activate eslint plugin to enforce correct ESM usage

* Use ESM exports in jest-cli
  • Loading branch information
SimenB authored and tabrindle committed Oct 11, 2017
1 parent 613feca commit f90f419
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/jest-cli/src/lib/__tests__/is_valid_path.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

import isValidPath from '../is_valid_path';

import isValidPath from '../is_valid_path';

const path = require('path');
const {
makeGlobalConfig,
Expand Down

0 comments on commit f90f419

Please sign in to comment.