Skip to content

Commit d8a3741

Browse files
author
Kent C. Dodds
committed
simplify things
1 parent 3998bee commit d8a3741

9 files changed

+23
-19
lines changed

client/src/components/__tests__/login.final.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import React from 'react'
2-
import {
3-
generate,
4-
renderIntoDocument,
5-
cleanup,
6-
render,
7-
} from 'til-client-test-utils'
2+
import {generate} from 'til-client-test-utils'
3+
import {render, renderIntoDocument, cleanup} from 'react-testing-library'
84
import Login from '../login'
95

106
afterEach(cleanup)

client/src/components/__tests__/login.step-1.todo.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Basic unit test
12
test('calls onSubmit with the username and password when submitted', () => {
23
// Arrange
34
// create a fake object to hold the form field values (username and password)

client/src/components/__tests__/login.step-2.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from 'react'
2-
import {generate, render, Simulate} from 'til-client-test-utils'
2+
import {generate} from 'til-client-test-utils'
3+
import {render, Simulate} from 'react-testing-library'
34
import Login from '../login'
45

56
test('calls onSubmit with the username and password when submitted', () => {

client/src/components/__tests__/login.step-2.todo.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
// using helpful utilities
12
import React from 'react'
23
import ReactDOM from 'react-dom'
34
// you'll need these:
4-
// import {generate, render, Simulate} from 'til-client-test-utils'
5+
// import {generate} from 'til-client-test-utils'
6+
// import {render, Simulate} from 'react-testing-library'
57
// note that til-client-test-utils is found in `client/test/til-client-test-utils`
6-
// and it re-exports some utilities from react-testing-library (like render and Simulate)
78
import Login from '../login'
89

910
test('calls onSubmit with the username and password when submitted', () => {

client/src/components/__tests__/login.step-3.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from 'react'
2-
import {generate, renderIntoDocument, cleanup} from 'til-client-test-utils'
2+
import {generate} from 'til-client-test-utils'
3+
import {renderIntoDocument, cleanup} from 'react-testing-library'
34
import Login from '../login'
45

56
// If you render your components with renderIntoDocument via react-testing-library

client/src/components/__tests__/login.step-3.todo.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
// dealing with react's simulated events
12
import React from 'react'
2-
import {generate, render, Simulate} from 'til-client-test-utils'
3+
import {generate} from 'til-client-test-utils'
4+
import {render, Simulate} from 'react-testing-library'
35
import Login from '../login'
46

57
// Due to the fact that our element is not in the document, the
@@ -16,6 +18,9 @@ import Login from '../login'
1618
//
1719
// Bonus: Don't forget to cleanup after yourselve when you're finished so you don't
1820
// have things hanging out in the document!
21+
//
22+
// Extra bonus, rather than manually inserting the container into the document
23+
// check out the docs for react-testing-library and the renderIntoDocument method!
1924

2025
test('calls onSubmit with the username and password when submitted', () => {
2126
// Arrange

client/src/components/__tests__/login.step-4.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import React from 'react'
2-
import {
3-
generate,
4-
renderIntoDocument,
5-
render,
6-
cleanup,
7-
} from 'til-client-test-utils'
2+
import {generate} from 'til-client-test-utils'
3+
import {render, renderIntoDocument, cleanup} from 'react-testing-library'
84
import Login from '../login'
95

106
afterEach(cleanup)

client/src/components/__tests__/login.step-4.todo.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
// snapshot testing
12
import React from 'react'
2-
import {generate, renderIntoDocument, cleanup} from 'til-client-test-utils'
3+
import {generate} from 'til-client-test-utils'
4+
import {renderIntoDocument, cleanup} from 'react-testing-library'
35
import Login from '../login'
46

57
afterEach(cleanup)

other/simple-react/__tests__/item-list.todo.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
// Render your component (tip: use ReactDOM.render(JSX, container))
2323
//
2424
// Make your assertion(s) on the textContent of the container
25-
// (tip: expect's toMatch function might be what you want)
25+
// (tip: expect's toMatch function might be what you want
26+
// for example: `expect('some text content').toMatch('text')`)
2627
//
2728
// For your second test, it will be very similar to the first.
2829

0 commit comments

Comments
 (0)