You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { expect, test } from 'vitest'
import { render } from 'vitest-browser-svelte'
import Component from '@components/alerts/alert.svelte'
test('counter button increments the count', async () => {
const screen = render(Component, {
heading: 'Hello'
})
await expect.element(screen.getByText('Hello')).toBeVisible()
})
gives me this error:
SyntaxError: The requested module '@vitest/browser/context' does not provide an export named 'page'
❯ node_modules/vitest-browser-svelte/src/pure.js:2:31
The text was updated successfully, but these errors were encountered:
gives me this error:
The text was updated successfully, but these errors were encountered: