MyCrypto/spec/actions/config.spec.ts

13 lines
338 B
TypeScript
Raw Normal View History

2017-07-03 19:42:52 -07:00
import { changeLanguage } from '../../common/actions/config';
describe('actions', () => {
2017-07-03 20:21:19 -07: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 16:16:26 -07:00
});