shierro/territory-manager

View on GitHub
internals/generators/container/actions.test.js.hbs

Summary

Maintainability
Test Coverage
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);
    });
  });
});