Last active
October 21, 2018 21:15
-
-
Save tiagogomes772/1c12e0349f6f9c6b62ad11c3b8687a75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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