test.js 1.41 KB
Newer Older
1
// @remove-on-eject-begin
Christoph Pojer's avatar
Christoph Pojer committed
2
3
4
5
6
7
8
9
/**
 * 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.
 */
10
// @remove-on-eject-end
11
12
'use strict';

Christoph Pojer's avatar
Christoph Pojer committed
13
process.env.NODE_ENV = 'test';
14
process.env.PUBLIC_URL = '';
Christoph Pojer's avatar
Christoph Pojer committed
15

16
17
18
19
20
21
22
// Makes the script crash on unhandled rejections instead of silently
// ignoring them. In the future, promise rejections that are not handled will
// terminate the Node.js process with a non-zero exit code.
process.on('unhandledRejection', err => {
  throw err;
});

23
24
// Ensure environment variables are read.
require('../config/env');
25

Christoph Pojer's avatar
Christoph Pojer committed
26
27
28
const jest = require('jest');
const argv = process.argv.slice(2);

29
30
// Watch unless on CI or in coverage mode
if (!process.env.CI && argv.indexOf('--coverage') < 0) {
31
32
33
  argv.push('--watch');
}

34
35
// @remove-on-eject-begin
// This is not necessary after eject because we embed config into package.json.
Daniel Grant's avatar
Daniel Grant committed
36
const createJestConfig = require('./utils/createJestConfig');
Dan Abramov's avatar
Dan Abramov committed
37
38
const path = require('path');
const paths = require('../config/paths');
39
40
41
42
43
44
45
46
47
48
argv.push(
  '--config',
  JSON.stringify(
    createJestConfig(
      relativePath => path.resolve(__dirname, '..', relativePath),
      path.resolve(paths.appSrc, '..'),
      false
    )
  )
);
49
// @remove-on-eject-end
Christoph Pojer's avatar
Christoph Pojer committed
50
jest.run(argv);