mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-27 21:08:13 +08:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
/*eslint-env node, mocha */
|
|
/*global expect */
|
|
/*eslint no-console: 0*/
|
|
'use strict';
|
|
|
|
import config from 'config';
|
|
|
|
describe('appEnvConfigTests', () => {
|
|
it('should load app config file depending on current --env', () => {
|
|
expect(config.appEnv).to.equal('test');
|
|
});
|
|
});
|