MyCrypto/spec/actions/config.spec.js

13 lines
338 B
JavaScript
Raw Normal View History

2017-07-04 02:42:52 +00:00
import { changeLanguage } from '../../common/actions/config';
describe('actions', () => {
2017-07-04 03:21:19 +00:00
it('should create an action to change language to index', () => {
const value = 'en';
const expectedAction = {
type: 'CONFIG_LANGUAGE_CHANGE',
value
};
expect(changeLanguage(value)).toEqual(expectedAction);
});
2017-05-23 23:16:26 +00:00
});