Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import reducer, { initialState } from '../src/reducers';
  2.  
  3. describe('timed layers reducer test', () => {
  4. it('should return the initial state', () => {
  5. expect(reducer(undefined, {})).toEqual(
  6. initialState,
  7. );
  8. });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement