Created
July 26, 2017 15:07
-
-
Save tmikeschu/8b33b1cbba74955f9344a990a10a09df to your computer and use it in GitHub Desktop.
React testing snippets
This file contains hidden or 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
{ | |
"private": true, | |
"devDependencies": { | |
"enzyme": "^2.7.1", | |
"jest-enzyme": "^2.1.2", | |
"react-dom": "^15.6.1", | |
"react-test-renderer": "^15.6.1", | |
}, | |
"dependencies": { | |
"react": "^15.6.1", | |
"react-dom": "^15.6.1", | |
"react-scripts": "1.0.10", | |
}, | |
} |
This file contains hidden or 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
// src/App/Contact/Contact.spec.jsx | |
import React from "react" | |
import { shallow } from "enzyme" | |
import Contact from "./Contact" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment