generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 6
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 dependency vitest to v0.15.2 #9
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
4d1fe4d
to
a136e84
Compare
a136e84
to
3606cd1
Compare
3606cd1
to
88f5592
Compare
1b4aba9
to
5a23bb9
Compare
5a23bb9
to
0deb934
Compare
0deb934
to
398a755
Compare
398a755
to
148d7ec
Compare
148d7ec
to
4184207
Compare
4184207
to
d2fbfa7
Compare
d2fbfa7
to
3cd901d
Compare
3cd901d
to
6028743
Compare
6028743
to
8eb7ab0
Compare
8eb7ab0
to
6f80c99
Compare
6f80c99
to
b59af10
Compare
2468523
to
1e0f80e
Compare
1e0f80e
to
e0ccdcb
Compare
e0ccdcb
to
7c74147
Compare
7c74147
to
d2cbf9e
Compare
d2cbf9e
to
5bbad46
Compare
5bbad46
to
e428787
Compare
e428787
to
852dfc4
Compare
852dfc4
to
1ecdf04
Compare
1ecdf04
to
66b8645
Compare
66b8645
to
3a29c64
Compare
3a29c64
to
f11035a
Compare
f11035a
to
75f4707
Compare
75f4707
to
95f500a
Compare
95f500a
to
91f1236
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.0.122
->0.15.2
Release Notes
vitest-dev/vitest
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
v0.9.3
Compare Source
Bug Fixes
vite-node
to rootdev
script (#1129) (5f53680)clearScreen
option in vite, close #1125 (d482992)v0.9.2
Compare Source
v0.9.1
Compare Source
Bug Fixes
displayDiff
with non-string (61fbddb)Features
config.outputFile
to allow objects, close #1068 (#1073) (a63cfa2)v0.9.0
Compare Source
Bug Fixes
Features
v0.8.5
Compare Source
Bug Fixes
Features
v0.8.4
Compare Source
Bug Fixes
Features
v0.8.3
Compare Source
Bug Fixes
Features
v0.8.2
Compare Source
Bug Fixes
v0.8.1
Compare Source
Bug Fixes
v0.8.0
Compare Source
Bug Fixes
global
option in favor ofglobals
(#970) (2d662ec)Features
v0.7.13
Compare Source
Bug Fixes
v0.7.12
Compare Source
Bug Fixes
Features
v0.7.11
Compare Source
Bug Fixes
v0.7.10
Compare Source
Bug Fixes
v0.7.9
Compare Source
Bug Fixes
v0.7.8
Compare Source
Bug Fixes
v0.7.7
Compare Source
Bug Fixes
outputFile
does not exist (#986) (5eac4ca)Features
v0.7.6
Compare Source
Bug Fixes
v0.7.5
Compare Source
Features
v0.7.4
Compare Source
Bug Fixes
v0.7.3
Compare Source
Bug Fixes
process.env.VITEST_MODE
timing (2254c91)v0.7.2
Compare Source
Features
process.env.VITEST_MODE
(6647fa7)getRunningMode
utils (3d6c41a)isFirstRun
utils (210bc6f)v0.7.1
Compare Source
Bug Fixes
mockdate
and fix negative thread time (#972) (aa239bf)Features
runOnce
utils (#967) (8a25a78)v0.7.0
Compare Source
Breacking changes
moduleCache
, fix hmr (#961) (f26cdf2)Features
v0.6.3
Compare Source
Bug Fixes
resolveId
optional (aba4ea8)Features
v0.6.1
Compare Source
Bug Fixes
skip
mode correctly (#930) (5993ce1)Features
v0.6.0
Compare Source
Bug Fixes
Features
beforeEach
,beforeAll
,afterEach
,afterAll
(#898) (95d6432)import.meta.vitest
(#901) (3eec387)v0.5.9
Compare Source
Bug Fixes
v0.5.8
Compare Source
Bug Fixes
v0.5.7
Compare Source
Bug Fixes
v0.5.6
Compare Source
Bug Fixes
Features
--dir
option (70cac6c)v0.5.5
Compare Source
Bug Fixes
v0.5.4
Compare Source
Bug Fixes
Features
v0.5.3
Compare Source
v0.5.2
Compare Source
Bug Fixes
Features
v0.5.1
Compare Source
Bug Fixes
Features
v0.5.0
Compare Source
Breaking Change
defineConfig
moved fromvitest/node
tovitest/config
, #799Bug Fixes
Features
v0.4.3
Compare Source
Bug Fixes
v0.4.2
Compare Source
Bug Fixes
/dist/
by default (bb77e4f)v0.4.1
Compare Source
Bug Fixes
v0.4.0
Compare Source
Bug Fixes
Features
define
globals (#769) (15ea3a3)v0.3.6
Compare Source
Bug Fixes
Features
Performance Improvements
v0.3.5
Compare Source
Bug Fixes
describe
async support (#750) (d4415fe), closes #746defineConfig
helper (#749) (e72b881)describe
async support (#746) (f9b52c1)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.