-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update ava to the latest version 🚀 #8
base: master
Are you sure you want to change the base?
Conversation
Codecov Report@@ Coverage Diff @@
## master #8 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 4 4
Lines 110 110
=====================================
Hits 110 110 Continue to review full report at Codecov.
|
Version 0.18.1 just got published.Update to this version instead 🚀 Release Notes0.18.1Quick bug fix: Remove |
Version 0.18.2 just got published.Update to this version instead 🚀 Release Notes0.18.2Many bug fixes for snapshot testing, magic assert, and the type definitions: v0.18.1...v0.18.2 CommitsThe new version differs by 26 commits .
There are 26 commits in total. See the full diff. |
Version 0.19.0 just got published.Update to this version instead 🚀 Release Notes0.19.0Since our last minor release, @novemberborn has worked tirelessly on refactoring big parts of the codebase to be more correct and readable, while squashing many bugs. We've also added multiple detections that will prevent user mistakes. HighlightsWorking snapshotsWe released snapshot support with Tests fail if no assertions are run (BREAKING)Sometimes you write a test that accidentally passes, because your assertion was never run. For example, the following test passes if test('unicorn', t => { for (const animal of getAnimals()) { t.is(animal, 'unicorn'); } }); AVA now fails your test if no assertions were run. This can be a problem if you use third-party assertion libraries, since AVA cannot detect when those assertions pass. You can disable this behavior by setting the Improved
|
Version 0.19.1 just got published.Update to this version instead 🚀 Release Notes0.19.1A bugfix release. See CommitsThe new version differs by 5 commits .
See the full diff. |
Version 0.20.0 just got published.Update to this version instead 🚀 Release Notes0.20.0Today’s release is very exciting. After adding magic assert and snapshot testing we found that these features sometimes disagreed with each other. HighlightsMore magical assertsMagic assert will now always show the difference between actual and expected values. If an unexpected error occurs it’ll print all (enumerable) properties of the error which can make it easier to debug your program. More details of an object are printed, like the constructor name and the string tag. Buffers are hex-encoded with line breaks so they’re easy to read:
|
Version 0.21.0 just got published.Update to this version instead 🚀 Release Notes0.21.0This is primarily a bug fix release, but some features did sneak in:
This release includes the following patches:
Thanks💖 Huge thanks to @wprater, @HippoDippo, @roperzh, @ArtemGovorov, @dancoates, @suchmaske, @ajtorres9 and @guillaumevincent for helping us with this release. We couldn’t have done it without you! Get involvedWe welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide. CommitsThe new version differs by 17 commits.
There are 17 commits in total. See the full diff |
Version 0.22.0 just got published.Update to this version instead 🚀 Release Notes0.22.0There's but a few commits in this release, but we've made a big change to how AVA manages its test workers 👩🏼🔬👨🏼🏭👨🏿🚀👨🏻⚕️👩🏽💼. HighlightsDefault concurrencyWe now cap the number of concurrent workers to the number of CPU cores on your machine. Previously AVA started workers for each test file, so if you had many test files this could actually bring things to a halt. 465fcec You can still customize the concurrency by setting the Unfortunately this does change how
|
Version 0.23.0 just got published.Update to this version instead 🚀 Release Notes0.23.0Highlights 🕴
|
Version 0.24.0 just got published.Update to this version instead 🚀 Release Notes0.24.0Highlights 💡This is a pretty small release, but a great one if you're solely developing for Node.js 8.3 or above. You can now use object rest/spread properties in test files without any further Babel configuration. Note that if you're running tests on older versions of Node.js you'll still need to add the relevant Babel plugins, since this new language feature has not yet reached stage 4. 37c9122 Miscellaneous 🕯
All changes 📚Thanks 💌💖 Huge thanks to @jedmao, @Lifeuser, @mightyiam, @ahmadawais and @codeslikejaggars for helping us with this release. We couldn’t have done it without you! Get involved ✌️We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide. CommitsThe new version differs by 12 commits.
See the full diff |
Version 0.25.0 just got published.Update to this version instead 🚀 CommitsThe new version differs by 15 commits.
See the full diff |
Update to this version instead 🚀 Release Notes for 1.0AVA 1.0 🚀Back in January we started work on the 1.0 release, taking the opportunity to upgrade to Babel 7 and follow its beta releases. It's been a year where we made massive improvements to AVA. It's also been a year with many exciting events in our personal lives. Be it honeymoons & weddings, work & friends, naturalizations and international relocations. So, we're done. Or, rather, we're just beginning. Testing can be a drag. AVA helps you get it done. Its concise API, detailed error output, embrace of new language features and process isolation let you write tests more effectively. So you can ship more awesome code or do non-programming things. Starting now we'll push out patches and new features more regularly. And, when the time comes, ship a 2.0 and a 3.0 and so forth. If you like what we're doing, why not try and contribute? We're a friendly bunch and we could use your help to make AVA even better. We couldn't have gotten here without the nearly one hundred people who've contributed more, and the many more who suggested improvements, reported bugs and provided feedback. And, of course, everyone who's used AVA. Thank you for your enthusiasm and support. What's new & improvedAssertionsNew
|
Update to this version instead 🚀 Release Notes for 1.1.01.1.0New featuresAVA now exports a import test from 'ava'; import {meta} from 'ava'; This is useful in helpers that need to know the test file. bccd297 Bug fixes and other improvements
All changes 📚Thanks 💌💖 Huge thanks to @fitztrev, @forresst, @astrob0t, @pearofducks, @coreyfarrell and @dflupu for helping us with this release. We couldn’t have done it without you! Get involved ✌️We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide. CommitsThe new version differs by 9 commits.
See the full diff |
Update to this version instead 🚀 Release Notes for 1.2.0New featuresYou can now set a timeout for test themselves. The test will fail if this timeout is exceeded. The timeout is reset each time an assertion is made: test('foo', t => { t.timeout(100); // 100 milliseconds // Write your assertions here }); AVA also has a global timeout feature. The mini reporter now logs tests that were pending when those timeouts occur. Additionally, if you interrupt a test using ctrl+c we'll now also show the pending tests. 2b60556 Thank you @dflupu for your hard work on this! Bug fixes and other improvements
All changes 📚Thanks 💌💖 Huge thanks to @anishkny, @CrispusDH, @dflupu and @niktekusho for helping us with this release. We couldn’t have done it without you! Get involved ✌️We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide. CommitsThe new version differs by 11 commits.
See the full diff |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! 💜 🚚💨 💚 Find out how to migrate to Snyk at greenkeeper.io
|
Version 0.18.0 of ava just got published.
The version 0.18.0 is not covered by your current version range.
Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.
I recommend you look into these changes and try to get onto the latest version of ava.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.
Commits
The new version differs by 114 commits .
2623c11
0.18.0
a45cdb9
Mention magic assert in the readme
c980f97
Fix crash with snapshot testing
34bebc4
Removed
--source
CLI flag (#1215)ca016c0
Remove the
repeating
dependency751d2a8
Cut testing time of AVA itself by more than half
b3eaf30
Bump dependencies
aa1b8bb
Finish ES2015ifying the codebase \o/
c9e6e6f
Magic assert (#1154)
9616dde
Improve metadata checks (#980)
173da28
Improve error message for watch mode in CI (#1208)
872d2ed
Various minor tweaks
2bdf72a
Bump
lodash.isequal
(#1206)0606ff7
Exit with error if --watch is used in CI (#1203)
83937bf
Some tweaks to the TS make file
There are 114 commits in total. See the full diff.
Not sure how things should work exactly?
There is a collection of frequently asked questions and of course you may always ask my humans.
Your Greenkeeper Bot 🌴