test.js 1.74 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
// Watch unless on CI or in coverage mode
if (!process.env.CI && argv.indexOf('--coverage') < 0) {
26
27
28
  argv.push('--watch');
}

29
30
31
32
33
34
35
36
37
38
39
40
// A temporary hack to clear terminal correctly.
// You can remove this after updating to Jest 18 when it's out.
// https://github.com/facebook/jest/pull/2230
var realWrite = process.stdout.write;
var CLEAR = process.platform === 'win32' ? '\x1Bc' : '\x1B[2J\x1B[3J\x1B[H';
process.stdout.write = function(chunk, encoding, callback) {
  if (chunk === '\x1B[2J\x1B[H') {
    chunk = CLEAR;
  }
  return realWrite.call(this, chunk, encoding, callback);
};

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