Last active
August 29, 2015 14:20
-
-
Save tristanwietsma/236b5201251fea96b640 to your computer and use it in GitHub Desktop.
Jest Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Jest Example | |
This is directly from the jest website. | |
## Requirements | |
- node | |
- npm | |
## Install | |
```bash | |
git clone https://gist.github.com/236b5201251fea96b640.git | |
cd 236b5201251fea96b640 | |
npm install | |
mkdir __tests__ | |
mv sum-test.js __tests__/ | |
``` | |
## Run | |
```bash | |
npm test | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts" : { | |
"test" : "jest" | |
}, | |
"devDependencies": { | |
"jest-cli": "0.4.0" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jest.dontMock('../sum'); | |
describe('sum', function() { | |
it('adds 1 + 2 to equal 3', function() { | |
var sum = require('../sum'); | |
expect(sum(1, 2)).toBe(3); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sum(value1, value2) { | |
return value1 + value2; | |
} | |
module.exports = sum; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment