Skip to content

Commit

Permalink
fix(schematics): correct spec description in reducer template (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
koumatsumoto authored and brandonroberts committed Aug 22, 2018
1 parent 4223ff9 commit b7ab4f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { reducer, initialState } from './<%= dasherize(name) %>.reducer';

describe('<%= classify(name) %> Reducer', () => {
describe('unknown action', () => {
it('should return the initial state', () => {
describe('an unknown action', () => {
it('should return the previous state', () => {
const action = {} as any;

const result = reducer(initialState, action);
Expand Down

0 comments on commit b7ab4f8

Please sign in to comment.