createJestConfig.js 1.69 KB
Newer Older
Christoph Pojer's avatar
Christoph Pojer committed
1
2
3
4
5
6
7
8
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
9
10

// Note: this file does not exist after ejecting.
Christoph Pojer's avatar
Christoph Pojer committed
11

12
const fs = require('fs');
13
const paths = require('../config/paths');
14

15
module.exports = (resolve, rootDir, isEjecting) => {
16
17
  // Use this instead of `paths.testsSetup` to avoid putting
  // an absolute filename into configuration after ejecting.
18
  const setupTestsFile = fs.existsSync(paths.testsSetup) ? '<rootDir>/src/setupTests.js' : undefined;
19

20
21
  // 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.
Christoph Pojer's avatar
Christoph Pojer committed
22
  const config = {
23
    collectCoverageFrom: ['src/**/*.{js,jsx}'],
24
25
    setupFiles: [resolve('config/polyfills.js')],
    setupTestFrameworkScriptFile: setupTestsFile,
26
    testPathIgnorePatterns: [
27
      '<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]'
28
    ],
29
    testEnvironment: 'node',
30
    testURL: 'http://localhost',
31
32
33
34
35
36
37
38
39
40
    transform: {
      '^.+\\.(js|jsx)$': isEjecting ?
        '<rootDir>/node_modules/babel-jest'
        : resolve('config/jest/babelTransform.js'),
      '^.+\\.css$': resolve('config/jest/cssTransform.js'),
      '^(?!.*\\.(js|jsx|css|json)$)': resolve('config/jest/fileTransform.js'),
    },
    transformIgnorePatterns: [
      '[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'
    ],
41
42
43
    moduleNameMapper: {
      '^react-native$': 'react-native-web'
    }
Christoph Pojer's avatar
Christoph Pojer committed
44
45
46
47
48
49
  };
  if (rootDir) {
    config.rootDir = rootDir;
  }
  return config;
};