vue-turbo-starter icon indicating copy to clipboard operation
vue-turbo-starter copied to clipboard

chore(deps): update testing

Open renovate[bot] opened this issue 5 months ago • 2 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@pinia/testing (source) 0.1.5 -> 0.1.6 age adoption passing confidence
@vitest/ui (source) 2.0.5 -> 2.1.1 age adoption passing confidence
jsdom 25.0.0 -> 25.0.1 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.1 age adoption passing confidence

Release Notes

vuejs/pinia (@​pinia/testing)

v0.1.6

Compare Source

vitest-dev/vitest (@​vitest/ui)

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
jsdom/jsdom (jsdom)

v25.0.1

Compare Source

  • Updated dependencies, notably tough-cookie, which no longer prints a deprecation warning.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Sep 12 '24 15:09 renovate[bot]