* docs: add react-testing-library example
* chore: rename test files to match comments in docs
* docs: show react-testing-library example first then enzyme
* adds create-react-app snapshot dependency in docs
The current docs imply you can use Jest snapshots with create-react-app 'out-the-box', however the Snapshot Testing example doesn't work with a fresh install. You need to additionally install `react-test-renderer` as a dependency.
I thought it was more helpful to change the docs, but if it's better to raise the issue elsewhere let me know?!
* Update TutorialReact.md
The current docs imply you can use Jest snapshots with create-react-app 'out-the-box', however the Snapshot Testing example doesn't work with a fresh install. You need to additionally install `react-test-renderer` as a dependency.
I thought it was more helpful to change the docs, but if it's better to raise the issue elsewhere let me know?!
* ran yarn install and yarn lint:md
* amendned text to match w/o CRA code example
* Document caveat with mocks, Enzyme, snapshots and React 16.
Closes#5258. Update the documentation to describe the warnings that are
emitted by React 16 when using Enzyme, mocked components and snapshot
testing.
* Update CHANGELOG.md
* Describe further options to work around warnings
* Format md files with prettier
* Format even more markdown
* Fix escaping of .
* Don't use prettier on readme.md
* Use prettier@1.8.1
* Prettify moar files
* Remove redundant prettier options from vscode settings
* Format with prettier 1.8.2
* Adding a clean copy of Docusaurus
Updating sidebar
Modifying files into Docusaurus format
Slight header logo CSS change
Ignore translated files and build directory
Proper file locations for Docusaurus
Move blog files to Docusaurus preferred location, modified crowdin to output /docs to /translated_pages, updated siteConfig.js
Eslinting Docusaurus files
Ignoring website/blog pages
Linter fixes
* Updating Circle config to remove website test
* Updating Circle config to auto-deploy website
* Add @deltice's config changes before website build, skip yarn build step
* Switch crowdin branch to master
* Updating siteconfig to @deltice's file
* Test crowdin branch
* Switching Crowdin to master
* Uses yarn to install, run, and deploy
* Feedback fixes
Switch to use process.env.VAR for algolia key
Switching crowdin upload/download to use yarn
Circle CI fix
Adding a delay to crowdin
Fixing prettier errors
Updating crowdin command in circle ci config
Path fix
* Upgrading docusaurus to 1.0.0a40, adds an RSS/Atom feed
* Update Docusaurus version
* Updated footer to reflect current footer. Updated footer logo.
* Fixes Edit this doc link, removes node_modules from .gitignore
* Move .gitignore rules to top level
* Updating license file in siteConfig to MIT, added new Docusaurus beta to package.json
* Lint fix
* Editing siteConfig.js to account for /docs not living in /docs/en
* Adds a link to CrowdIn project from language drop down
* Adds comments to generated files
* Modify Circle CI to manually download crowdin cli
* Doc build process only renders pages that are enabled in languages.js
* Added a favicon.ico
* Merging TutorialAsync.md
Adding Bosnian, enabling Espanol
Using ENV variables
* Merging TutorialAsync.md
* Copied all docs from current master branch
Localization Cleanup
Added a link to CrowdIn in language drop down
Further cleanup, moved CrowdIn API key to environment
HeaderNav fix
* Fixes prettier.js and other CI issues
Added comments to generated files
Worked out additional lint issues, added i18n files to ignore
* Update .eslintignore
* install react-test-render for removing enzyme warning
Enzyme recently made a fix for console warning if we use React v15.5+ , See issue here: https://github.com/airbnb/enzyme/pull/876
To fix that, we have to install react-test-render instead of react-addons-test-utils
Warning:
```
console.error node_modules/fbjs/lib/warning.js:36
Warning: ReactTestUtils has been moved to react-dom/test-utils. Update references to remove this warning.
console.error node_modules/fbjs/lib/warning.js:36
Warning: Shallow renderer has been moved to react-test-renderer/shallow. Update references to remove this warning.
```
* Update TutorialReact.md