Skip to content

Instantly share code, notes, and snippets.

@nataliemarleny
Created May 13, 2019 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nataliemarleny/d8bf05f437e2442ea713fa987d8939c1 to your computer and use it in GitHub Desktop.
Save nataliemarleny/d8bf05f437e2442ea713fa987d8939c1 to your computer and use it in GitHub Desktop.
Initial unit test - jest setup
const sum = require('./sum');
test('adds 1 + 2 to equal 3', () => {
expect(sum(1, 2)).toBe(3);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment