test.js 1.31 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
Christoph Pojer's avatar
Christoph Pojer committed
11

12
13
'use strict';

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

Brian Ng's avatar
Brian Ng committed
17
// Load environment variables from .env file. Suppress warnings using silent
18
19
20
21
22
// if this file is missing. dotenv will never modify any environment variables
// that have already been set.
// https://github.com/motdotla/dotenv
require('dotenv').config({silent: true});

Christoph Pojer's avatar
Christoph Pojer committed
23
24
25
const jest = require('jest');
const argv = process.argv.slice(2);

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

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