0.7.0 (2018-03-09)
- Fix running multiple tests when running without
--runInBandmode. Start own HTTP sever for each test context. - Correct missing
awaitkeyword in Readme
0.6.0 (2018-03-05)
-
Monorepo! Split the
jest-puppe-shotsinto 3 NPM packages:jest-puppe-shots-env- Contains Jest environment, setup and teardown hooksjest-puppe-shots-preset- Contains Jest preset that can be used to quickly configure Jestjest-puppe-shots- The React renderers and matchers API
-
Reduce manual Jest config and use a Jest
"preset"instead
Remove old hooks from your project configuration and use a "preset" instead:
jest.config.json:
{
- "testEnvironment": "jest-puppe-shots/lib/node-environment.js",
- "globalSetup": "jest-puppe-shots/lib/global-setup.js",
- "globalTeardown": "jest-puppe-shots/lib/global-teardown.js"
+ "preset": "jest-puppe-shots-preset"
}or
jest.config.js:
{
- testEnvironment: 'jest-puppe-shots/lib/node-environment.js',
- globalSetup: 'jest-puppe-shots/lib/global-setup.js',
- globalTeardown: "jest-puppe-shots/lib/global-teardown.js'
+ preset: 'jest-puppe-shots-preset'
}0.4.0 (2018-02-23)
- Fix typos in readme
- #5 Fix problem with multiline result after rendering component to HTML
- Add strict version for Node and NPM engine
- Setup Jest tests runner
- Add basic unit tests for renderers
- Setup Travis CI
0.3.3 (2018-02-19)
- Freeze styled-components package to version 2+
- Fix resetting styled components styles before collecting CSS
0.3.2 (2018-02-19)
- Fix typos in documentation
- Add Eslint and reformat source code
0.3.1 (2018-02-13)
- First official release