generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
chore(deps): update dependency vitest to v0.16.0 #25
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/vitest-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8818a1f
to
10681a4
Compare
10681a4
to
b04d9a1
Compare
b04d9a1
to
eb1b713
Compare
83ae207
to
3497b44
Compare
3497b44
to
53ca3bc
Compare
53ca3bc
to
445cddb
Compare
445cddb
to
fd44c3b
Compare
823dfaa
to
7756ab4
Compare
7756ab4
to
30fb082
Compare
30fb082
to
c0d5af9
Compare
c0d5af9
to
1ce02a0
Compare
ac479b3
to
9d1448c
Compare
9d1448c
to
2d553c8
Compare
2d553c8
to
f996844
Compare
4c33867
to
0912ce8
Compare
0912ce8
to
633a933
Compare
1100007
to
d3ec760
Compare
d3ec760
to
50ecd7e
Compare
50ecd7e
to
075829e
Compare
075829e
to
8fed040
Compare
8fed040
to
406043c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.
This PR contains the following updates:
0.9.3
->0.16.0
Release Notes
vitest-dev/vitest
v0.16.0
Compare Source
🚨 Breaking Changes
#1525
by @sheremet-va🚀 Features
#1531
by @sheremet-va🐞 Bug Fixes
#1522
by @sheremet-va#1529
by @sheremet-va#1538
by @KentoMoriwakiView changes on GitHub
v0.15.2
Compare Source
🐞 Bug Fixes
#1496
#1431
#1503
#1511
#1505
#1510
#1506
❤️ Contributors
Thanks to @antfu | @nieyuyao | @RedJanvier | @renovate[bot] | @sheremet-va
View changes on GitHub
v0.15.1
Compare Source
🐞 Bug Fixes
css
option22fed1b8
❤️ Contributors
Thanks to @sheremet-va | @stormwarning
View changes on GitHub
v0.15.0
Compare Source
🚀 Features
#1468
VITEST_POOL_ID
#1473
maxConcurrency
option,5
by default#1483
#1477
css
config option, don't process CSS by default#1467
🐞 Bug Fixes
#1462
#1474
#1489
#1487
View changes on GitHub
v0.14.2
Compare Source
Bug Fixes
Features
--ouputDiffLines
cli flag (#1446) (0b8a5bc)v0.14.1
Compare Source
Bug Fixes
v0.14.0
Compare Source
Breaking Changes
.mjs
for esm build (692ad34)"type": "module"
from vitest/package.json (#1411) (b4a9b0b), closes #325watchIgnore
is renamed towatchExclude
and now accepts only glob patterns (#1424) (3f5ff5b)Bug Fixes
v0.13.1
Compare Source
Bug Fixes
Features
v0.13.0
Compare Source
Features
v0.12.10
Compare Source
Bug Fixes
Features
expect.extend
. (#1378) (4ec0a76)v0.12.9
Compare Source
Bug Fixes
v0.12.8
Compare Source
Bug Fixes
v0.12.7
Compare Source
Bug Fixes
Features
v0.12.6
Compare Source
Bug Fixes
.resolves
and.rejects
expectations (#1300) (789cc93)process.stdout
could be undefined on Windows (fix #1292) (#1305) (3179ac9)v0.12.5
Compare Source
Bug Fixes
Features
debug
(ed3374f)v0.12.4
Compare Source
Bug Fixes
Features
onConsoleLog
options to filter logs (35c1b52)f
to rerun only failed tests (#1283) (3c6f991)v0.12.3
Compare Source
Bug Fixes
v0.12.2
Compare Source
Bug Fixes
Features
v0.12.1
Compare Source
Bug Fixes
require
reference (5da8b00)Features
v0.12.0
Compare Source
Bug Fixes
Features
v0.11.0
Compare Source
Bug Fixes
src
(#1254) (b7973fe)Features
v0.10.5
Compare Source
Bug Fixes
Features
v0.10.4
Compare Source
Bug Fixes
v0.10.3
Compare Source
Bug Fixes
v0.10.2
Compare Source
Features
v0.10.1
Compare Source
Bug Fixes
Features
test.skipIf
andtest.runIf
apis (76c3894)v0.10.0
Compare Source
Breaking Changes
From Vitest v0.10.0, the callback style of declaring tests is deprecated. You can rewrite them to use
async
/await
functions, or use Promise to mimic the callback style.Features
beforeAll
/beforeEach
cleanup callbackbeforeAll
/beforeEach
now accepts an optional cleanup function as the return value (equivalent toafterAll
/afterEach
).Learn more at:
beforeAll
beforeEach
Test Context
Inspired by Playwright Fixtures, Vitest's test context allows you to define utils, states, and fixtures that can be used in your tests.
Learn more at Test Context
Concurrent Snapshot
Due to the limitation of JavaScript, timing based Singleton pattern will cause conflicts when running multiple async functions in concurrent. Previously reported as #551. Thanks to the newly introduced Test Context, we can now provide a test specific
expect
instance to avoid conflicts. To use it, you can destructure theexpect
from each test context instead of the global one.Reporter from file / package
Now you can pass a path to file, or a package name to the
reporters
options to use custom reporter. Thanks to @ericjgagnon (#1136) (f2bceb2)Bug Fixes
v0.9.4
Compare Source
Bug Fixes
Features
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.