@scenetest/playwright
v0.3.0
Published
Playwright fixtures for scenetest inline assertions
Downloads
589
Maintainers
Readme
@scenetest/playwright
Playwright fixtures for Scenetest inline assertions. Provides a scenePage fixture that collects assertion results from the browser.
npm install -D @scenetest/playwrightimport { test } from '@scenetest/playwright'
test('loads without failures', async ({ scenePage }) => {
await scenePage.goto('/')
await scenePage.waitForAssertions()
expect(scenePage.failed).toHaveLength(0)
})See the monorepo for full documentation.
