dmitriz / cpsfy

🚀 Tiny goodies for Continuation-Passing-Style functions, fully tested
https://www.npmjs.com/package/cpsfy
MIT License
70 stars 2 forks source link

chore(deps): update dependency ava to v3.9.0 #113

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
ava (source) devDependencies minor 3.8.2 -> 3.9.0

Release Notes

avajs/ava ### [`v3.9.0`](https://togithub.com/avajs/ava/releases/v3.9.0) [Compare Source](https://togithub.com/avajs/ava/compare/v3.8.2...v3.9.0) #### New experiments! Thanks to [@​futpib](https://togithub.com/futpib) we now have an experimental `t.like()` assertion [`19c4f35`](https://togithub.com/avajs/ava/commit/19c4f35fbae740268dedeeb4d450f813f2d5e85e): In the following example, the `map` property of `value` must be deeply equal to that of `selector`. However `nested.qux` is ignored, because it's not in `selector`. ```js t.like({ map: new Map([['foo', 'bar']]), nested: { baz: 'thud', qux: 'quux' } }, { map: new Map([['foo', 'bar']]), nested: { baz: 'thud', } }) ``` Read more in the [`t.like()` assertion documentation](https://togithub.com/avajs/ava/blob/master/docs/03-assertions.md#likevalue-selector-message) and [let us know what you think](https://togithub.com/avajs/ava/issues/2518). [@​yjpa7145](https://togithub.com/yjpa7145) has contributed an experiment to reverse the order in which `t.teardown()` functions are run, so that the last registered function is called first [`952a017`](https://togithub.com/avajs/ava/commit/952a0177758c5601a72c2b050fc0308e7fa774c7). This will be the behavior in AVA 4. To enable both these experiments update your AVA configuration: **`package.json`**: ```json { "ava": { "nonSemVerExperiments": { "likeAssertion": true, "reverseTeardowns": true } } } ``` **`ava.config.js`**: ```js export default { nonSemVerExperiments: { likeAssertion: true, reverseTeardowns: true } } ``` #### Reporter changes [@​Michael55555](https://togithub.com/Michael55555) has helped us combine our reporter code into a single file [`b3866b6`](https://togithub.com/avajs/ava/commit/b3866b6b06c98862a19f6cb27ec28b643e2f00c7). We've also made some other tweaks and improvements [`baaf99a`](https://togithub.com/avajs/ava/commit/baaf99a792eed586678a0cf88864f3f0aa16bd7a). Let us know if anything seems amiss. #### Improved diffs [@​bunysae](https://togithub.com/bunysae) made it so that missing or extraneous objects in diffs are printed with extra depth [concordancejs/concordance#​62](https://togithub.com/concordancejs/concordance/pull/62). #### Farewell Node.js 13 Node.js 13 has reached end-of-life. Per our [support statement](https://togithub.com/avajs/ava/blob/master/docs/support-statement.md) we have removed it from our test matrix and supported version list. #### All changes See for all changes. Thank you [@​paulrobertlloyd](https://togithub.com/paulrobertlloyd) and [@​Autre31415](https://togithub.com/Autre31415) for contributing documentation improvements.

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.

codecov[bot] commented 4 years ago

Codecov Report

Merging #113 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #113   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            2         2           
  Lines           60        60           
=========================================
  Hits            60        60           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 2bde9e8...4bc21a0. Read the comment docs.