MyCrypto/common/config/test.js

10 lines
194 B
JavaScript
Raw Normal View History

2017-04-12 05:04:27 +00:00
'use strict';
import baseConfig from './base';
let config = {
appEnv: 'test' // don't remove the appEnv property here
};
export default Object.freeze(Object.assign(baseConfig, config));