Who?
andrei.picus@hootsuite.com
github.com/NiGhTTraX
Started with JS 10 years ago
In love with TDD
Slide 3
Slide 3 text
What?
1. How to write good unit tests.
2. How to unit test a React component.
3. How to write the tests.
4. How to run the tests.
Slide 4
Slide 4 text
What’s a unit test?
A test, whose result (pass or fail)
depends on the correctness of only
one interesting piece of behaviour.
Slide 5
Slide 5 text
Testing a client-server relation
Do I ask the interface the
right questions?
Do I correctly handle all of
the responses?
Do I respond correctly to the
questions?
Do I try to respond to the
questions?
Contract
C S
INTERFACE
Collaboration
Slide 6
Slide 6 text
The interface
● lifecycle methods
● callbacks
● public methods
● DOM event handlers
Slide 7
Slide 7 text
Inter-component communication
Do I send the correct props?
C
Do I call the right callbacks?
Do I react correctly to the new
props?
Do I implement the callback?
API
P
Slide 8
Slide 8 text
Intra-component communication
Do I compute the correct state?
render() Component
Do I call the right callbacks?
Do I render the right things?
Do I implement the callback?
API
Setup a component
Put it into a certain state
and then assert stuff on it.
Don’t do two actions that mutate state in a
single test => create another test where you
load the component in the 2nd state
Slide 15
Slide 15 text
Running the tests
Browserify (webpack doesn’t work with sinon)
MochaJS
ChaiJS
SinonJS
Karma
Istanbul