Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created April 1, 2020 08:14
Show Gist options
  • Save manakuro/f2a7cbe99633a759e892ede1cba799f0 to your computer and use it in GitHub Desktop.
Save manakuro/f2a7cbe99633a759e892ede1cba799f0 to your computer and use it in GitHub Desktop.
describe('getAnimal', () => {
context('when passing code 1', () => {
beforeEach(() => {
// arrange
// prepare data here
})
it('should get CATS', () => {
// act
const result = getAnimal(1)
// assert
expect(result).toEqual('CATS')
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment