test.js 1.34 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

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

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

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

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