Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello lovely humans,
ava just published its new version 0.17.0.
This version 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.
Do you have any ideas how I could improve these pull requests? Did I report anything you think isn’t right?
Are you unsure about how things are supposed to work?
There is a collection of frequently asked questions and while I’m just a bot, there is a group of people who are happy to teach me new things. Let them know.
Good luck with your project ✨
You rock!
🌴
GitHub Release
The current working directory in test files changed (BREAKING)
We made the hard decision of changing the current working directory (
process.cwd()
) in test files to be the same directory as package.json. It was previously the same as__dirname
(the directory of the test file). Havingprocess.cwd()
equal__dirname
felt like a good idea at the time, but as the popularity of AVA grew, people started hitting issues with it.This affects users that have test files in a sub-folder and are using relative paths. If you have your test files in the same directory as package.json, you're fine.
The fix is to wrap all relative paths in
path.join(__dirname, 'relative-path')
to make them absolute.Here's an example of what needs changing. The below file and
unicorn.txt
are both in./test/
.Let us know if anything is unclear or if you're having problems.
Commit: 476c653
Node.js version support
The next minor version of AVA, 0.18.0, will drop support Node.js 0.10 and 0.12. We'll continue fixing critical issues for this version until the end of the year. Time to upgrade if you haven't. (Discussion: #1051)
Highlights
--require
CLI flag. Configure it in package.json instead. 17119bclodash.isEqual
for deep equality checking (t.deepEqual()
&t.notDeepEqual()
). This might make your test fail if our previous deep equality check was too loose. 8856684power-assert
. 24a38act.doesNotThrow()
as it was renamed tot.notThrows()
. It was deprecated far back in AVA 0.12.0. e448798t.error()
alias fort.ifError()
. It will be removed in AVA 1.0.0. Just uset.ifError()
. 28bb0d5 (We have an automatic migration script if you're usingt.error()
)All Changes
v0.16.0...v0.17.0
The new version differs by 51 commits .
b24495d
0.17.0
056f227
bump dev dependencies and make XO happy
26bcab0
temp fix for Node.js internal stack traces showing
2d04763
Add docs for test parameter need to be named
t
(#1096)59254b7
Use current working directory if no
package.json
(#1044)3c3a6d8
add XO badge
e0a170b
Speed up CI (#1076)
257b34d
Upgrade XO (#1080)
3ea2ba1
Ensure test files load correct AVA installation (#1085)
476c653
Change the current working directory of tests to be the same directory as package.json (#1074)
1b214be
clean up caching precompiler (#1077)
6165a23
linting: turn off the
no-use-extend-native
rulee10338e
Update readme.md (#1075)
dae3a44
make XO happy
c258d03
Fix link to configuration in readme (#1073)
There are 51 commits in total. See the full diff.
This pull request was created by greenkeeper.io.
Tired of seeing this sponsor message? ⚡
greenkeeper upgrade