mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 01:28:16 +00:00
20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
|
process.env.NODE_ENV = 'test';
|
||
|
process.env.PUBLIC_URL = '';
|
||
|
|
||
|
// Load environment variables from .env file. Suppress warnings using silent
|
||
|
// 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});
|
||
|
|
||
|
const jest = require('jest');
|
||
|
const argv = process.argv.slice(2);
|
||
|
|
||
|
// Watch unless on CI
|
||
|
if (!process.env.CI) {
|
||
|
argv.push('--watch');
|
||
|
}
|
||
|
|
||
|
|
||
|
jest.run(argv);
|