Skip to content

Releases: macku/jest-puppe-shots

0.7.0 (2018-03-09)

09 Mar 04:10
d801ae2
Compare
Choose a tag to compare

Bugs

  • Fix running multiple tests when running without --runInBand mode. Start own HTTP sever for each test context.
  • Correct missing await keyword in Readme

0.6.0

05 Mar 06:24
6575333
Compare
Choose a tag to compare

Changelog

Upgrade guide

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'
}