Skip to content

Instantly share code, notes, and snippets.

@junderhill
Created March 7, 2019 10:47
Show Gist options
  • Select an option

  • Save junderhill/2a15455d4bbc93506543ff20bf8ae6f9 to your computer and use it in GitHub Desktop.

Select an option

Save junderhill/2a15455d4bbc93506543ff20bf8ae6f9 to your computer and use it in GitHub Desktop.
function authentication(){
return "test";
}
export default authentication
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