Skip to content

Instantly share code, notes, and snippets.

@gabrielem
Last active November 12, 2019 13:19
Show Gist options
  • Save gabrielem/4a7d4437df1cf6b45aa536aa0f090810 to your computer and use it in GitHub Desktop.
Save gabrielem/4a7d4437df1cf6b45aa536aa0f090810 to your computer and use it in GitHub Desktop.
//add.test.js
test('two plus two is four', () => {
expect(2 + 2).toBe(4)
})
//canary.test.js
describe('canary', function () {
it('can run a test', function () {
expect(true).toBe(true)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment