Created
March 7, 2019 10:47
-
-
Save junderhill/2a15455d4bbc93506543ff20bf8ae6f9 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
| function authentication(){ | |
| return "test"; | |
| } | |
| export default authentication |
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 authentication from "./authentication.reducer"; | |
| describe("authentication reducer", () => { | |
| it("is a passing test", () => { | |
| authentication(); | |
| expect("").toEqual(""); | |
| }); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment