-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moduleFileExtensions extensions is now passed to babel-jest (#5110)
* moduleFileExtensions extensions is now passed to babel-jest * Added test to show use of custom files extensions with babel-jest CHANGELOG: moduleFileExtensions now passed to babel transformer * Cleanup Cleaned integration_tests/transform/ecmascript-modules-support/yarn.lock Cleaned integration_tests/transform/ecmascript-modules-support/package.json Enable testing on windows * Remove yarn lock * Add changelog line
- Loading branch information
Showing
8 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
integration_tests/transform/ecmascript-modules-support/.babelrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"targets": { | ||
"node": "current" | ||
}, | ||
"modules": "commonjs" | ||
}] | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
...ation_tests/transform/ecmascript-modules-support/__tests__/ecmascript-modules-support.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict'; | ||
|
||
import {foo} from '../src/module'; | ||
|
||
it('can be used with mjs files using babel-jest', () => { | ||
expect(foo()).toBe('a'); | ||
}); |
10 changes: 10 additions & 0 deletions
10
integration_tests/transform/ecmascript-modules-support/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"jest": { | ||
"testEnvironment": "node", | ||
"moduleFileExtensions": ["js", "json", "jsx", "node", "mjs"], | ||
"testMatch": [ "**/__tests__/**/*.mjs"], | ||
"transform": { | ||
"^.+\\.mjs?$": "../../../packages/babel-jest" | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
integration_tests/transform/ecmascript-modules-support/src/index.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import {foo} from './module'; | ||
|
||
foo(); |
1 change: 1 addition & 0 deletions
1
integration_tests/transform/ecmascript-modules-support/src/module.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const foo = () => 'a'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters