Skip to content

Commit

Permalink
Support setupTests.ts (facebook#5698)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianschmitz committed Nov 23, 2018
1 parent d9ee05c commit 49e258b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/react-scripts/config/webpack.config.js
Expand Up @@ -635,8 +635,8 @@ module.exports = function(webpackEnv) {
'!**/*.json',
'!**/__tests__/**',
'!**/?(*.)(spec|test).*',
'!src/setupProxy.js',
'!src/setupTests.*',
'!**/src/setupProxy.*',
'!**/src/setupTests.*',
],
watch: paths.appSrc,
silent: true,
Expand Down
4 changes: 1 addition & 3 deletions packages/react-scripts/scripts/utils/createJestConfig.js
Expand Up @@ -14,15 +14,13 @@ const paths = require('../../config/paths');
module.exports = (resolve, rootDir, isEjecting) => {
// Use this instead of `paths.testsSetup` to avoid putting
// an absolute filename into configuration after ejecting.
const setupTestsMatches = paths.testsSetup.match(/src\/setupTests\.(.+)/);
const setupTestsMatches = paths.testsSetup.match(/src[/\\]setupTests\.(.+)/);
const setupTestsFileExtension =
(setupTestsMatches && setupTestsMatches[1]) || 'js';
const setupTestsFile = fs.existsSync(paths.testsSetup)
? `<rootDir>/src/setupTests.${setupTestsFileExtension}`
: undefined;

// TODO: I don't know if it's safe or not to just use / as path separator
// in Jest configs. We need help from somebody with Windows to determine this.
const config = {
collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}', '!src/**/*.d.ts'],

Expand Down

0 comments on commit 49e258b

Please sign in to comment.