Skip to content

Instantly share code, notes, and snippets.

@tiagogomes772
Last active October 21, 2018 21:15
Show Gist options
  • Save tiagogomes772/1c12e0349f6f9c6b62ad11c3b8687a75 to your computer and use it in GitHub Desktop.
Save tiagogomes772/1c12e0349f6f9c6b62ad11c3b8687a75 to your computer and use it in GitHub Desktop.
import * as actions from './Action';
describe('actions', () => {
it('should create an action to request a advice', () => {
const expectedAction = {
type: 'REQUEST_ADVICE',
};
expect(actions.requestAdvice()).toEqual(expectedAction);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment