diff options
author | Jon Ambas <jon@jonambas.com> | 2017-05-23 10:36:18 -0400 |
---|---|---|
committer | Jon Ambas <jon@jonambas.com> | 2017-05-23 10:36:18 -0400 |
commit | 7ece567c56b419f3c88fc959c929dea59bc37618 (patch) | |
tree | b5fb17d22e942bd574c2865d4f6a00e6d8326bfb /scripts/test.js | |
parent | a26f2a5afeafbd47278fb13072b65d94196a65df (diff) | |
download | matchbox-7ece567c56b419f3c88fc959c929dea59bc37618.zip matchbox-7ece567c56b419f3c88fc959c929dea59bc37618.tar.gz matchbox-7ece567c56b419f3c88fc959c929dea59bc37618.tar.bz2 |
Add jest
Diffstat (limited to 'scripts/test.js')
-rw-r--r-- | scripts/test.js | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/scripts/test.js b/scripts/test.js index 1995442..49fe1ad 100644 --- a/scripts/test.js +++ b/scripts/test.js @@ -1,21 +1,4 @@ 'use strict'; -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 or in coverage mode -if (!process.env.CI && argv.indexOf('--coverage') < 0) { - argv.push('--watch'); -} - - -jest.run(argv); +jest.run(); |