Skip to content

Instantly share code, notes, and snippets.

@lfac-pt
Created May 29, 2019 10:06
Show Gist options
  • Save lfac-pt/4a1202d3d8bacc73d0f5ce16755ed221 to your computer and use it in GitHub Desktop.
Save lfac-pt/4a1202d3d8bacc73d0f5ce16755ed221 to your computer and use it in GitHub Desktop.
Example 9 of my JavaScript and React unit tests basics
describe("deleteUser", () => {
test("makes a request to the delete user endpoint", () => {
// Test code
});
});
describe("render", () => {
test("renders the user name if the user is logged in", () => {
// Test code
});
test("renders a placeholder if the user is not logged in", () => {
// Test code
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment