mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-11 02:25:40 +00:00
2dafa88337
* Add `dotenv-expand` as a dependency * Add app version to sidebar * Add hardcoded latest safe version to env variables * Add `semver` to compare current vs latest version * Add Safe version to Safe Details * Adjustments in version number
22 lines
594 B
JavaScript
22 lines
594 B
JavaScript
// @flow
|
|
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-expand')(require('dotenv').config({ silent: true }))
|
|
|
|
const jest = require('jest')
|
|
|
|
const argv = process.argv.slice(2)
|
|
argv.push('--runInBand')
|
|
|
|
// Watch unless on CI or in coverage mode
|
|
if (!process.env.CI && argv.indexOf('--coverage') < 0) {
|
|
argv.push('--watch')
|
|
}
|
|
|
|
jest.run(argv)
|