@lvce-editor/test-with-playwright
v14.6.0
Published
CLI tool for running Playwright tests
Readme
@lvce-editor/test-with-playwright
Usage
{
"scripts": {
"e2e": "node ./node_modules/@lvce-editor/test-with-playwright/bin/test-with-playwright.js --only-extension=. --test-path=./e2e"
}
}test('sample.hello-world', async () => {
const sideBar = Locator('#SideBar')
await expect(sideBar).toBeVisible()
})