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

chore(deps-dev): bump vitest from 0.24.5 to 0.25.1 #277

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2022

Bumps vitest from 0.24.5 to 0.25.1.

Release notes

Sourced from vitest's releases.

v0.25.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.25.0

   ✅ Builtin TypeChecking

In v0.25.0, Vitest allows you to write tests for your types, using expectTypeOf or assertType syntaxes. By default all tests inside *.test-d.ts files are considered type tests. Run vitest typecheck to run type tests.

// my.test-d.ts
import { assertType, expectTypeOf } from 'vitest'
import { mount } from './mount.js'
test('my types work properly', () => {
expectTypeOf(mount).toBeFunction()
expectTypeOf(mount).parameter(0).toMatchTypeOf<{ name: string }>()
// @​ts-expect-error name is a string
assertType(mount({ name: 42 }))
})

Learn more at the documentation and this RFC

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 0.24.5 to 0.25.1.
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v0.25.1/packages/vitest)

---
updated-dependencies:
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 14, 2022
@Uzlopak
Copy link
Contributor

Uzlopak commented Nov 14, 2022

@climba03003

The vitest detection seems to be OK, but forcing ESM loader handling the files, does not result in loading the plugin.

@climba03003
Copy link
Member

Supporting all those framework seems to be a heavy task.
🤯🤯🤯

@Uzlopak
Copy link
Contributor

Uzlopak commented Nov 14, 2022

The unit tests for vitest break, when using versions of vitest >= 0.24.4.

@sheremet-va
Copy link

@climba03003

The vitest detection seems to be OK, but forcing ESM loader handling the files, does not result in loading the plugin.

What exactly do you test? If you want to test that others importing this library can use it, you need to add your source files to deps.exclude, since this is how they will run for those who don't inline fastify-autoload.

This is probably a regression still, and I will look into it. But there is also a case, where this might be desirable behaviour, and you need to disable deps.interopDefault (Vitest should probably do it by itself, when environment is node).

@Uzlopak
Copy link
Contributor

Uzlopak commented Nov 14, 2022

@sheremet-va

It seems that vitest-dev/vitest#2226 broke our code.

@sheremet-va
Copy link

Should be fixed in 0.25.2.

@Uzlopak
Copy link
Contributor

Uzlopak commented Nov 14, 2022

Thank you very much

@Uzlopak
Copy link
Contributor

Uzlopak commented Nov 14, 2022

@dependabot recreate

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 14, 2022

Superseded by #279.

@dependabot dependabot bot closed this Nov 14, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/vitest-0.25.1 branch November 14, 2022 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants