Skip to content
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

fix(browser): improve source maps when vi.mock is present #6810

Merged
merged 3 commits into from
Nov 13, 2024

Conversation

sheremet-va
Copy link
Member

@sheremet-va sheremet-va commented Oct 29, 2024

Description

This PR improves source map generation when vi.mock is detected. The mock is now present in the source map.

Fixes #6829

Please don't delete this checklist! Before submitting the PR, please make sure you do the following:

  • It's really useful if your PR references an issue where it is discussed ahead of time. If the feature is substantial or introduces breaking changes without a discussion, PR might be closed.
  • Ideally, include a test that fails without this PR but passes with it.
  • Please, don't make changes to pnpm-lock.yaml unless you introduce a new test example.

Tests

  • Run the tests with pnpm test:ci.

Documentation

  • If you introduce new functionality, document it. You can run documentation with pnpm run docs command.

Changesets

  • Changes in changelog are generated from PR name. Please, make sure that it explains your changes in an understandable manner. Please, prefix changeset messages with feat:, fix:, perf:, docs:, or chore:.

Copy link

netlify bot commented Oct 29, 2024

Deploy Preview for vitest-dev ready!

Name Link
🔨 Latest commit 26c503d
🔍 Latest deploy log https://app.netlify.com/sites/vitest-dev/deploys/6720db12bc6a8b00086152ce
😎 Deploy Preview https://deploy-preview-6810--vitest-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

pkg-pr-new bot commented Oct 29, 2024

@vitest/browser

pnpm add https://pkg.pr.new/@vitest/browser@6810

@vitest/coverage-istanbul

pnpm add https://pkg.pr.new/@vitest/coverage-istanbul@6810

@vitest/expect

pnpm add https://pkg.pr.new/@vitest/expect@6810

@vitest/coverage-v8

pnpm add https://pkg.pr.new/@vitest/coverage-v8@6810

@vitest/mocker

pnpm add https://pkg.pr.new/@vitest/mocker@6810

@vitest/pretty-format

pnpm add https://pkg.pr.new/@vitest/pretty-format@6810

@vitest/runner

pnpm add https://pkg.pr.new/@vitest/runner@6810

@vitest/snapshot

pnpm add https://pkg.pr.new/@vitest/snapshot@6810

@vitest/spy

pnpm add https://pkg.pr.new/@vitest/spy@6810

@vitest/ui

pnpm add https://pkg.pr.new/@vitest/ui@6810

@vitest/utils

pnpm add https://pkg.pr.new/@vitest/utils@6810

vite-node

pnpm add https://pkg.pr.new/vite-node@6810

vitest

pnpm add https://pkg.pr.new/vitest@6810

@vitest/web-worker

pnpm add https://pkg.pr.new/@vitest/web-worker@6810

@vitest/ws-client

pnpm add https://pkg.pr.new/@vitest/ws-client@6810

commit: 33ca778

@sheremet-va
Copy link
Member Author

sheremet-va commented Oct 29, 2024

Hm, this makes source maps for vi.mock better (it sees the hoisting now), but it is still partially broken 🤔 I am testing against this: https://github.com/vitest-tests/browser-examples/tree/main/examples/vue-msw-graphql (the stack trace is incorrect and source maps visualiser also goes crazy for some lines - primarily the first multi-line imports seems to be mapped weirdly). @AriPerkkio can you help me with this when you have the capacity? 🙏🏻

It is possibly related to the fact that we don't touch the import from vitest at all:

if (hoistedModules.includes(node.source.value as string)) {

With globals: true we inject the if statement that actually breaks the source map - I am not sure how to fix that one 🤔

@sheremet-va sheremet-va added this to the 2.2.0 milestone Oct 29, 2024
Copy link
Member

@AriPerkkio AriPerkkio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it correct that the original ast is returned as is? We are modifying the code a lot, but make no changes to ast. Does it help if it's not returned here? Leave it null?

return {
ast,
code: s.toString(),
map: s.generateMap({ hires: 'boundary', source: id }),
}

@sheremet-va
Copy link
Member Author

Is it correct that the original ast is returned as is?

Doesn't seem to change anything

@hi-ogawa
Copy link
Contributor

It is possibly related to the fact that we don't touch the import from vitest at all:

Are you also testing with the latest Vite? If import "vitest" is still hoisted by Vite ssr transform, the fix vitejs/vite#16356 is only included in Vite 6.

@sheremet-va
Copy link
Member Author

sheremet-va commented Oct 30, 2024

It is possibly related to the fact that we don't touch the import from vitest at all:

Are you also testing with the latest Vite? If import "vitest" is still hoisted by Vite ssr transform, the fix vitejs/vite#16356 is only included in Vite 6.

I’m testing the browser mode (I linked the example), it doesn't use Vite SSR transform. This PR actually includes changes from vitejs/vite#16356

@hi-ogawa
Copy link
Contributor

I’m testing the browser mode (I linked the example)

Ah, I missed that 🤦 then their change doesn't look relevant.

@AriPerkkio
Copy link
Member

AriPerkkio commented Oct 31, 2024

Hm, this makes source maps for vi.mock better (it sees the hoisting now), but it is still partially broken 🤔 I am testing against this: https://github.com/vitest-tests/browser-examples/tree/main/examples/vue-msw-graphql (the stack trace is incorrect and source maps visualiser also goes crazy for some lines - primarily the first multi-line imports seems to be mapped weirdly).

To me it looks really good - what's wrong here? https://ariperkkio.github.io/vite-plugin-source-map-visualizer/#MTYyMQB2aS5tb2NrKCIuL2NvbnN0YW50cy...

With globals: true: https://ariperkkio.github.io/vite-plugin-source-map-visualizer/#MTg1NQAKaWY...

Also these two showcase nicely the changes:

@sheremet-va
Copy link
Member Author

sheremet-va commented Oct 31, 2024

To me it looks really good - what's wrong here?

The first source map looks different to me. The vitest import is mapped incorrectly (I don't know how to share). Which causes the error stack trace to point to the previous line instead of the correct one. I also get incorrect source maps when globals is turned on and vitest import is removed

My source maps look like this 🤔

@sheremet-va
Copy link
Member Author

sheremet-va commented Oct 31, 2024

(Added a link to source maps, for some reason copying in Safari doesn't work, had to do it in Chrome)

I am also using the pkg.pr.new instead of linking

@sheremet-va sheremet-va merged commit 8d179af into vitest-dev:main Nov 13, 2024
18 checks passed
@sheremet-va sheremet-va deleted the fix/source-maps-vi-mock branch November 13, 2024 16:02
@weilbith
Copy link

Is there an easy way to notice when this was included in a release?

@AriPerkkio
Copy link
Member

@weilbith release changelogs are at https://github.com/vitest-dev/vitest/releases. This commit is mentioned on latest beta release.

@sheremet-va sheremet-va modified the milestones: 2.2.0, 3.0.0 Dec 5, 2024
renovate bot added a commit to mmkal/eslint-plugin-mmkal that referenced this pull request Jan 16, 2025
##### [v3.0.0](https://github.com/vitest-dev/vitest/releases/tag/v3.0.0)

#####    🚨 Breaking Changes

-   `spy.mockReset` changes  -  by [@Lordfirespeed](https://github.com/Lordfirespeed) in vitest-dev/vitest#6426 [<samp>(db7a8)</samp>](vitest-dev/vitest@db7a8888)
-   Pass down context to test hooks  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7034 [<samp>(82c2e)</samp>](vitest-dev/vitest@82c2e244)
-   Support Vite 6  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7026 [<samp>(7abe8)</samp>](vitest-dev/vitest@7abe854c)
-   **coverage**: Always exclude test files  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7254 [<samp>(b5268)</samp>](vitest-dev/vitest@b5268965)
-   **deps**: Update fake-timers to v14.0.0  -  by [@xxzefgh](https://github.com/xxzefgh) and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7097 [<samp>(c98b4)</samp>](vitest-dev/vitest@c98b4b1c)
-   **expect**: Check more properties for error equality  -  by [@hi-ogawa](https://github.com/hi-ogawa) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#5876 [<samp>(10023)</samp>](vitest-dev/vitest@100230e9)
-   **runner**: Support `describe(..., { shuffle: boolean })` and inherit from parent suite  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6670 [<samp>(aa1da)</samp>](vitest-dev/vitest@aa1dac3d)
-   **snapshot**: Reset snapshot state for `retry` and `repeats`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6817 [<samp>(e8ce9)</samp>](vitest-dev/vitest@e8ce94cf)
-   **spy**: SpyOn reuses mock if method is already spyed on  -  by [@sheremet-va](https://github.com/sheremet-va) and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6464 [<samp>(b3e43)</samp>](vitest-dev/vitest@b3e43d04)
-   **vitest**: Don't expose default toFake config  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6288 [<samp>(e3144)</samp>](vitest-dev/vitest@e3144fd8)

#####    🚀 Features

-   Support inline `diff` options and support `printBasicPrototype`  -  by [@hi-ogawa](https://github.com/hi-ogawa), [@sheremet-va](https://github.com/sheremet-va) and **Michał Grzegorzewski** in vitest-dev/vitest#6740 [<samp>(39186)</samp>](vitest-dev/vitest@391860f7)
-   Allow a custom note when calling `ctx.skip()` dynamically  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6805 [<samp>(697c3)</samp>](vitest-dev/vitest@697c35c5)
-   Allow inline workspace configuration  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6923 [<samp>(562e1)</samp>](vitest-dev/vitest@562e1b14)
-   Provide the current project to the global setup  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6942 [<samp>(a5bbc)</samp>](vitest-dev/vitest@a5bbc0a9)
-   Print project name as a label  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6925 [<samp>(a3bef)</samp>](vitest-dev/vitest@a3bef598)
-   Print a deprecation warning if suite or test uses object as the third argument  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7031 [<samp>(407f1)</samp>](vitest-dev/vitest@407f10e4)
-   Expose versions from `vitest/node` entry point and statically on Vitest  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7029 [<samp>(be8d4)</samp>](vitest-dev/vitest@be8d479b)
-   `diff.printBasicPrototype: false` by default  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7043 [<samp>(2b5c5)</samp>](vitest-dev/vitest@2b5c5201)
-   Prepare the Vitest API to be stable  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6962 [<samp>(9a1b5)</samp>](vitest-dev/vitest@9a1b5012)
-   Support Vite v6 in mocker package  -  by [@cexbrayat](https://github.com/cexbrayat) in vitest-dev/vitest#7058 [<samp>(96f47)</samp>](vitest-dev/vitest@96f47d37)
-   Allow multi-browser configuration  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6975 [<samp>(78b62)</samp>](vitest-dev/vitest@78b62ffe)
-   Add resolved project names to the reporter API  -  by [@userquin](https://github.com/userquin) in vitest-dev/vitest#7213 [<samp>(91758)</samp>](vitest-dev/vitest@91758360)
-   Introduce the new reporter API  -  by [@sheremet-va](https://github.com/sheremet-va) and [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7069 [<samp>(76662)</samp>](vitest-dev/vitest@766624ab)
-   Add `describe.for`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7253 [<samp>(0ad28)</samp>](vitest-dev/vitest@0ad2860b)
-   **api**:
    -   Add onBrowserInit event  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7255 [<samp>(80ce0)</samp>](vitest-dev/vitest@80ce0e1c)
-   **browser**:
    -   Support `actionTimeout` as playwright provider options  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6984 [<samp>(e2c29)</samp>](vitest-dev/vitest@e2c29eaf)
    -   Support clipboard api `userEvent.copy, cut, paste`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6769 [<samp>(843a6)</samp>](vitest-dev/vitest@843a621e)
    -   Implement locator.nth()  -  by [@xeger](https://github.com/xeger) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7137 [<samp>(38458)</samp>](vitest-dev/vitest@38458ea6)
-   **cli**:
    -   Support excluding projects with `--project=!pattern`  -  by [@haines](https://github.com/haines) in vitest-dev/vitest#6924 [<samp>(ebfe9)</samp>](vitest-dev/vitest@ebfe942c)
    -   Support specifying a line number when filtering tests  -  by [@mzhubail](https://github.com/mzhubail) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6411 [<samp>(4d94b)</samp>](vitest-dev/vitest@4d94b956)
    -   Support location filters for suites  -  by [@mzhubail](https://github.com/mzhubail) in vitest-dev/vitest#7048 [<samp>(751e2)</samp>](vitest-dev/vitest@751e2dce)
-   **coverage**:
    -   `thresholds` to support maximum uncovered items  -  by [@jonahkagan](https://github.com/jonahkagan) in vitest-dev/vitest#7061 [<samp>(bde98)</samp>](vitest-dev/vitest@bde98b6d)
-   **expect**:
    -   Add `toHaveBeenCalledExactlyOnceWith` expect matcher  -  by [@jacoberdman2147](https://github.com/jacoberdman2147) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6894 [<samp>(ff662)</samp>](vitest-dev/vitest@ff66206a)
    -   Add `toHaveBeenCalledAfter` and `toHaveBeenCalledBefore` utility  -  by [@Barbapapazes](https://github.com/Barbapapazes) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6056 [<samp>(85e6f)</samp>](vitest-dev/vitest@85e6f99f)
    -   Add `toSatisfy` asymmetric matcher  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7022 [<samp>(f691a)</samp>](vitest-dev/vitest@f691ad76)
    -   Add `toBeOneOf` matcher  -  by [@zirkelc](https://github.com/zirkelc) and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6974 [<samp>(3d742)</samp>](vitest-dev/vitest@3d742b2b)
-   **reporter**:
    -   Add support for function type to classname option in the junit reporter  -  by [@jpleclerc](https://github.com/jpleclerc), **Jean-Philippe Leclerc** and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6839 [<samp>(dc238)</samp>](vitest-dev/vitest@dc238e92)
-   **reporters**:
    -   `summary` option for `verbose` and `default` reporters  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6893 [<samp>(511b7)</samp>](vitest-dev/vitest@511b73c7)
-   **runner**:
    -   Test context can inject values from the config's `provide`  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6813 [<samp>(85c64)</samp>](vitest-dev/vitest@85c64e35)
    -   Add "queued" state  -  by [@sheremet-va](https://github.com/sheremet-va) and [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6931 [<samp>(5f8d2)</samp>](vitest-dev/vitest@5f8d2091)
-   **snapshot**:
    -   Provide `config` to `resolveSnapshotPath`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6800 [<samp>(746d8)</samp>](vitest-dev/vitest@746d8986)
-   **ui**:
    -   Allow run individual tests/suites from the UI  -  by [@userquin](https://github.com/userquin) in vitest-dev/vitest#6641 [<samp>(d9cc8)</samp>](vitest-dev/vitest@d9cc81dd)
    -   Make clicking on a test in the UI open the report section and scroll to the test failure if applicable  -  by [@jacoberdman2147](https://github.com/jacoberdman2147) in vitest-dev/vitest#6900 [<samp>(1bf27)</samp>](vitest-dev/vitest@1bf27f0d)
    -   Allow hide/show node_modules in module graph tab  -  by [@userquin](https://github.com/userquin) in vitest-dev/vitest#7217 [<samp>(50cf6)</samp>](vitest-dev/vitest@50cf61b8)
-   **vitest**:
    -   Include `coverageMap` in json report  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6606 [<samp>(9c8f7)</samp>](vitest-dev/vitest@9c8f7e3e)
    -   Add `onTestsRerun` method to global setup context  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6803 [<samp>(e26e0)</samp>](vitest-dev/vitest@e26e066c)

#####    🐞 Bug Fixes

-   Misc fix for vite 6 ecosystem ci  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6867 [<samp>(80f8b)</samp>](vitest-dev/vitest@80f8bbf4)
-   Respect `cacheDir` when optimizer is enabled  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6910 [<samp>(0b08b)</samp>](vitest-dev/vitest@0b08bc11)
-   Reset runningPromise after `finally` in case there is an error to avoid it getting stuck  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6951 [<samp>(02194)</samp>](vitest-dev/vitest@021944cd)
-   Revert support for Vite 6  -  by [@sheremet-va](https://github.com/sheremet-va) [<samp>(fbe5c)</samp>](vitest-dev/vitest@fbe5c39d)
-   Support Node 21  -  by [@sheremet-va](https://github.com/sheremet-va) [<samp>(92f7a)</samp>](vitest-dev/vitest@92f7a2ad)
-   Don't use `Custom` internally  -  by [@sheremet-va](https://github.com/sheremet-va) [<samp>(46fc5)</samp>](vitest-dev/vitest@46fc5340)
-   Don't use `Custom` internally"  -  by [@sheremet-va](https://github.com/sheremet-va) [<samp>(db19f)</samp>](vitest-dev/vitest@db19f6eb)
-   Don't use `Custom` type internally  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7032 [<samp>(7957f)</samp>](vitest-dev/vitest@7957f912)
-   Persist cli filters as watch mode file filter  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6955 [<samp>(cc703)</samp>](vitest-dev/vitest@cc703362)
-   Don't use dim color for succeeded tests  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7059 [<samp>(8a6f5)</samp>](vitest-dev/vitest@8a6f5f16)
-   Fix missing chai types  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7149 [<samp>(6a09c)</samp>](vitest-dev/vitest@6a09cc3b)
-   `cancelCurrentRun` awaits `runningPromise`  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7168 [<samp>(1dbf5)</samp>](vitest-dev/vitest@1dbf5140)
-   Add Locator typings for nth, first and last.  -  by [@xeger](https://github.com/xeger) in vitest-dev/vitest#7176 [<samp>(d262e)</samp>](vitest-dev/vitest@d262e059)
-   Batch console logs by microtask  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7183 [<samp>(53d1d)</samp>](vitest-dev/vitest@53d1d5f5)
-   Allow `getMockImplementation` to return "once" implementation  -  by [@chaptergy](https://github.com/chaptergy) in vitest-dev/vitest#7033 [<samp>(39125)</samp>](vitest-dev/vitest@3912554b)
-   `capturePrintError` logger duplicate event handlers  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7197 [<samp>(e89c3)</samp>](vitest-dev/vitest@e89c3693)
-   Allow slots in vitest-browser-vue  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7120 [<samp>(2319f)</samp>](vitest-dev/vitest@2319f849)
-   Reset root workspace project on restart  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7238 [<samp>(6e518)</samp>](vitest-dev/vitest@6e51843a)
-   Cleanup `vitest/reporters` entrypoint  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7241 [<samp>(aec0b)</samp>](vitest-dev/vitest@aec0b530)
-   Colors on `forks` pool  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7090 [<samp>(8cab9)</samp>](vitest-dev/vitest@8cab9601)
-   Export `VitestRunner` type from `vitest/runners`  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7240 [<samp>(9b218)</samp>](vitest-dev/vitest@9b218854)
-   Return test fn result to runner  -  by [@wmertens](https://github.com/wmertens) in vitest-dev/vitest#7239 [<samp>(48645)</samp>](vitest-dev/vitest@48645bf4)
-   Re-apply default conditions if using vite 6 or later  -  by [@thebanjomatic](https://github.com/thebanjomatic), **thebanjomatic** and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7071 [<samp>(84287)</samp>](vitest-dev/vitest@84287fc2)
-   Prevent infinite loop on prettyDOM calls  -  by [@tsirlucas](https://github.com/tsirlucas) in vitest-dev/vitest#7250 [<samp>(a3a46)</samp>](vitest-dev/vitest@a3a46a53)
-   **api**:
    -   Don't report events during `vitest list`  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7257 [<samp>(1c2b2)</samp>](vitest-dev/vitest@1c2b210d)
-   **benchmark**:
    -   Disable type testing while benchmarking  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7068 [<samp>(4e603)</samp>](vitest-dev/vitest@4e60333d)
    -   Rewrite reporter without `log-update`  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7019 [<samp>(6d23f)</samp>](vitest-dev/vitest@6d23f4b1)
-   **browser**:
    -   Improve source maps when `vi.mock` is present  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6810 [<samp>(8d179)</samp>](vitest-dev/vitest@8d179afc)
    -   Explain TypeScript support in docs and add asymmetric matchers to types  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#6934 [<samp>(ac1a7)</samp>](vitest-dev/vitest@ac1a7fdc)
    -   Fix matchers.d.ts  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6995 [<samp>(a485b)</samp>](vitest-dev/vitest@a485b32b)
    -   Fix user event state on preview provider  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7041 [<samp>(8e944)</samp>](vitest-dev/vitest@8e94427e)
    -   Fix provider options types  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7115 [<samp>(579bd)</samp>](vitest-dev/vitest@579bda97)
    -   Only use locator.element on last expect.element attempt  -  by [@tsirlucas](https://github.com/tsirlucas) in vitest-dev/vitest#7139 and vitest-dev/vitest#7152 [<samp>(847d3)</samp>](vitest-dev/vitest@847d3221)
    -   Use correct project when filtering `entries` in the browser mode  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7167 [<samp>(423d6)</samp>](vitest-dev/vitest@423d6345)
    -   Fix `console.time` with fake timers  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7207 [<samp>(903f3)</samp>](vitest-dev/vitest@903f3b9b)
    -   Add instance validation to resolve coverage error  -  by [@DevJoaoLopes](https://github.com/DevJoaoLopes) and [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7231 [<samp>(1e791)</samp>](vitest-dev/vitest@1e7915b5)
-   **coverage**:
    -   Exclude browser mode iframe results  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6905 [<samp>(e04a1)</samp>](vitest-dev/vitest@e04a1368)
    -   Correct coverage when `isolate: false` is used  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6957 [<samp>(426ce)</samp>](vitest-dev/vitest@426ce6d8)
    -   Prevent crash when v8 incorrectly merges static_initializer's  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7150 [<samp>(cb6db)</samp>](vitest-dev/vitest@cb6db13e)
-   **deps**:
    -   Update all non-major dependencies  -  in vitest-dev/vitest#7085 [<samp>(8cc92)</samp>](vitest-dev/vitest@8cc92c2f)
    -   Update all non-major dependencies  -  in vitest-dev/vitest#7116 [<samp>(de5ce)</samp>](vitest-dev/vitest@de5ce3d9)
    -   Update dependency pathe to v2  -  in vitest-dev/vitest#7181 [<samp>(74dbe)</samp>](vitest-dev/vitest@74dbe03f)
-   **diff**:
    -   Truncate to avoid crash on diff large objects  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7133 [<samp>(2a9d6)</samp>](vitest-dev/vitest@2a9d67a2)
-   **junit**:
    -   Fix testsuites time to be sum of all testsuite items  -  by [@saitonakamura](https://github.com/saitonakamura) in vitest-dev/vitest#6985 [<samp>(ca37a)</samp>](vitest-dev/vitest@ca37a06a)
-   **pretty-format**:
    -   Support react 19  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6909 [<samp>(bd29b)</samp>](vitest-dev/vitest@bd29bcc7)
-   **reporters**:
    -   Write buffered stdout/stderr on process exit  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6932 [<samp>(80cde)</samp>](vitest-dev/vitest@80cde2a0)
    -   Rewrite `dot` reporter without `log-update`  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6943 [<samp>(be969)</samp>](vitest-dev/vitest@be969cfb)
    -   Check `--hideSkippedTests` in base reporter  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#6988 [<samp>(721a5)</samp>](vitest-dev/vitest@721a5b84)
    -   Show `retry` and `repeats` counts  -  by [@AriPerkkio](https://github.com/AriPerkkio) and [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7004 [<samp>(3496a)</samp>](vitest-dev/vitest@3496a015)
-   **runner**:
    -   Long synchronous tasks does not time out  -  by [@ferdodo](https://github.com/ferdodo) and [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#2920 and vitest-dev/vitest#6944 [<samp>(2fb58)</samp>](vitest-dev/vitest@2fb585ae)
    -   Mark tests of `describe.todo` as `'todo'`  -  by [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7171 [<samp>(1d458)</samp>](vitest-dev/vitest@1d458955)
-   **snapshot**:
    -   Fix "obsolete" message on snapshot update re-run  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7129 [<samp>(c2beb)</samp>](vitest-dev/vitest@c2beb8ca)
    -   Preserve white space of `toMatchFileSnapshot`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7156 [<samp>(a437b)</samp>](vitest-dev/vitest@a437b656)
    -   Fix obsoleteness check of `toMatchSnapshot("...")`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7126 [<samp>(ac9ba)</samp>](vitest-dev/vitest@ac9ba151)
-   **typecheck**:
    -   Fix typecheck collect on Vite 6  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6972 [<samp>(7b35d)</samp>](vitest-dev/vitest@7b35d13a)
    -   Use unique temp and tsbuildinfo file for each tsconfig file  -  by [@masnormen](https://github.com/masnormen) in vitest-dev/vitest#7107 and vitest-dev/vitest#7112 [<samp>(61b30)</samp>](vitest-dev/vitest@61b30162)
    -   Fix error test case mapping for `@ts-expect-error`  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7125 [<samp>(27d34)</samp>](vitest-dev/vitest@27d340aa)
-   **types**:
    -   Make parameters non-nullable for Playwright options  -  by [@apple-yagi](https://github.com/apple-yagi) in vitest-dev/vitest#6989 [<samp>(fe2a1)</samp>](vitest-dev/vitest@fe2a187f)
-   **ui**:
    -   Wrong module graph when generating html.meta.json.gz in browser mode  -  by [@userquin](https://github.com/userquin) in vitest-dev/vitest#7214 [<samp>(dccdd)</samp>](vitest-dev/vitest@dccdd550)
    -   Add errors and draft state (\*) to the code editor  -  by [@userquin](https://github.com/userquin) in vitest-dev/vitest#7044 [<samp>(faca4)</samp>](vitest-dev/vitest@faca4de8)
-   **vite-node**:
    -   Fix error stack on Windows  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#6786 [<samp>(bf7b3)</samp>](vitest-dev/vitest@bf7b36ac)
    -   Properly normalize file url import  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7087 [<samp>(31675)</samp>](vitest-dev/vitest@31675e3b)
    -   Fix mandatory node prefix  -  by [@hi-ogawa](https://github.com/hi-ogawa) in vitest-dev/vitest#7179 [<samp>(b6284)</samp>](vitest-dev/vitest@b6284642)
-   **watch**:
    -   Don't indicate exit when no matching files  -  by [@sheremet-va](https://github.com/sheremet-va) and [@AriPerkkio](https://github.com/AriPerkkio) in vitest-dev/vitest#7246 [<samp>(003c0)</samp>](vitest-dev/vitest@003c0bef)
-   **workspace**:
    -   `extends: true` correctly inherits all root config properties  -  by [@sheremet-va](https://github.com/sheremet-va) in vitest-dev/vitest#7232 [<samp>(798c0)</samp>](vitest-dev/vitest@798c0da2)

#####     [View changes on GitHub](vitest-dev/vitest@v2.1.8...v3.0.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unexpected behavior when in-source tests utilize vi.mock without globals
4 participants