contiago-toolbar
Version:
One of the options for outputting content from contiago xml-server
19 lines (16 loc) • 359 B
JavaScript
import {
defaultAction,
} from '../actions';
import {
DEFAULT_ACTION,
} from '../constants';
describe('ToolbarContainer actions', () => {
describe('Default Action', () => {
it('has a type of DEFAULT_ACTION', () => {
const expected = {
type: DEFAULT_ACTION,
};
expect(defaultAction()).toEqual(expected);
});
});
});