Write tests. Not too many. Mostly integration.
Kent C. Dodds
Utah
1 wife, 4 kids
PayPal, Inc.
@kentcdodds
Please Stand...
if you are able
What this talk is
- Dissecting Guillermo's tweet
- High level principles
- Opinionated
What this talk is not
- Bashing on other tools or methodologies
- Full of gifs
- 725 slides ๐ต
Let's
Get
STARTED!
The infamous tweet
(more than famous)
Write tests.
Why do we write tests?
Confidence!
Enhanced Workflows
Not too many.
Let's talk about "code coverage"
How much code coverage do you need?
Good question!
It dependsโข
Remember this?
Implementation Details
๐ก
if your test does something that the consumer of your code doesn't then it's testing implementation details
๐ก
๐ก
if a refactor breaks your tests, then it's testing implementation details
๐ก
Mostly integration.
The Testing Pyramid
The Gleb Pyramid
The Aaron Square
The Testing Dorito
Static Code Analysis
Unit tests
function sum(a, b) {
return a + b
}
test('sum adds numbers', () => {
expect(sum(1, 3)).toBe(4)
})
Integration tests
let api, server
beforeAll(async () => {
server = await startServer()
const {port} = server.address()
api = axios.create({
baseURL: `http://localhost:${port}/api`
})
})
afterAll(() => server.close())
beforeEach(() => resetDb())
test('can register a user', async () => {
const registerData = {username: 'bob', password: 'wiley'}
const testUser = await api
.post('auth/register', registerData)
.then(response => response.data.user)
expect(testUser.username).toBe(registerData.username)
const readUserUnauthenticated = await api
.get(`users/${testUser.id}`)
.then(response => response.data.user)
expect(readUserUnauthenticated).toEqual(testUser)
})
End-to-end tests
describe('authentication', () => {
it('should allow users to register', () => {
const user = {username: 'bob', password: 'wiley'}
cy
.visitApp()
.getByTestId('register-link')
.click()
.getByTestId('username-input')
.type(user.username)
.getByTestId('password-input')
.type(user.password)
.getByTestId('login-submit')
.click()
cy
.url()
.should('equal', 'http://localhost:3000/')
cy
.getByTestId('username-display')
.should('contain', user.username)
})
})
The Testing Trophy
๏ฟ heap
๐ฐ๐ค๐ฐ
๐๐จ
๐ข
Simple problems ๐
Big problems ๐
Integration tests provide the best balance of:
- ๏ฟ heap
- ๐๐จ
- ๐
But how? ๐ค
Poke fewer holes in reality!
Test higher up your tree
๐ Thanks Guillermo! ๐
Thank you!
๐ kcd.im/write-tests-feedbackย ๐
resources on the next slide ๐
Resources
- "Write tests. Not too many. Mostly Integration."ย (My blog post version)
- My Testing Workshops
- Cypress.io
- Jest ๐
- Thoughts on Testing React Componentsย (15 minute video analyzing React tests)
- But really, what is a JavaScript Test?
- kcd.im/news and blog.kentcdodds.com (lots of testing content there)
Write tests. Not too many. Mostly integration.
By Kent C. Dodds
Write tests. Not too many. Mostly integration.
Guillermo Rauch tweeted this a while back. Letโs take a quick dive into what it means.
- 8,729