Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Created February 20, 2019 13:53
Show Gist options
  • Save OlivierJM/52d0ad8f64ee1275f3d349095dc7fe27 to your computer and use it in GitHub Desktop.
Save OlivierJM/52d0ad8f64ee1275f3d349095dc7fe27 to your computer and use it in GitHub Desktop.
function add(a, b){
return a + b
}
// test if the add really adds two numbers
it('should add two given numbers', () => {
expect(add(2, 5)).toBe(7)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment