summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/internals/generators/container/actions.test.js.hbs
blob: 89ca2c7a4c63a488df89b16cc9cf22fd282dfda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
    });
  });
});