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

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

Brian Ng's avatar
Brian Ng committed
15
// Load environment variables from .env file. Suppress warnings using silent
16
17
18
19
20
// 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
21
22
23
const jest = require('jest');
const argv = process.argv.slice(2);

24
25
26
27
28
// Watch unless on CI
if (!process.env.CI) {
  argv.push('--watch');
}

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