@mars/heroku-js-runtime-env
Version:
Runtime env var support for static javascript apps on Heroku
20 lines (15 loc) • 454 B
JavaScript
var rewire = require('rewire')
var should = require('should')
describe('in development', function() {
var runtimeEnv
beforeEach(function() {
runtimeEnv = rewire('../')
runtimeEnv.__set__('compileTimeEnv', {
NODE_ENV: 'development',
REACT_APP_HELLO: 'world'
})
});
it('contains value of `process.env`', function() {
runtimeEnv().should.be.an.instanceOf(Object).and.have.property('REACT_APP_HELLO', 'world')
})
})