Skip to content

Commit 79ba207

Browse files
committed
fix(test): update module ext order
Closes #2608
1 parent 7f2f5ad commit 79ba207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/bundles/helpers/jest/jest-preset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const rootDir = path.join(testingDir, '..');
44
const internalDir = path.join(rootDir, 'internal');
55

66
// NOTE: if you change this, also change compiler/transpile.ts
7-
const moduleExtensions = ['ts', 'tsx', 'mjs', 'js', 'jsx'];
7+
const moduleExtensions = ['ts', 'tsx', 'js', 'mjs', 'jsx'];
88
const moduleExtensionRegexp = '(' + moduleExtensions.join('|') + ')';
99

1010
module.exports = {

0 commit comments

Comments
 (0)