Guest User

Untitled

a guest
Aug 28th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. describe('chatReducer()', ({ test }) => {
  2. test('with no arguments', ({ same, end }) => {
  3. const msg = 'should return correct default state';
  4.  
  5. const actual = reducer();
  6. const expected = createState();
  7.  
  8. same(actual, expected, msg);
  9. end();
  10. });
  11. });
Add Comment
Please, Sign In to add comment