14 lines
370 B
Handlebars
Raw Normal View History

2021-07-21 20:08:17 +02:00
import { defaultAction } from '../actions';
import { DEFAULT_ACTION } from '../constants';
describe('{{plugin}} | components | {{name}} actions', () => {
describe('Default Action', () => {
it('has a type of DEFAULT_ACTION', () => {
const expected = {
type: DEFAULT_ACTION,
};
expect(defaultAction()).toEqual(expected);
});
});
});