Skip to content

Commit

Permalink
fix(test): update module ext order
Browse files Browse the repository at this point in the history
Closes #2608
  • Loading branch information
adamdbradley committed Jul 31, 2020
1 parent 7f2f5ad commit 79ba207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bundles/helpers/jest/jest-preset.js
Expand Up @@ -4,7 +4,7 @@ const rootDir = path.join(testingDir, '..');
const internalDir = path.join(rootDir, 'internal');

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

module.exports = {
Expand Down

0 comments on commit 79ba207

Please sign in to comment.