19 lines
364 B
Handlebars
Raw Normal View History

2017-08-22 15:53:22 +02:00
2017-01-17 13:40:59 +01:00
import {
defaultAction,
} from '../actions';
import {
DEFAULT_ACTION,
} from '../constants';
describe('{{ properCase name }} actions', () => {
describe('Default Action', () => {
it('has a type of DEFAULT_ACTION', () => {
const expected = {
type: DEFAULT_ACTION,
};
expect(defaultAction()).toEqual(expected);
});
});
});