An open API service indexing awesome lists of open source software.

https://github.com/lvce-editor/test-with-playwright

Write extension e2e tests for Lvce editor
https://github.com/lvce-editor/test-with-playwright

e2e-tests lvce-editor

Last synced: 21 days ago
JSON representation

Write extension e2e tests for Lvce editor

Awesome Lists containing this project

README

        

# @lvce-editor/test-with-playwright

## Usage

```json
{
"scripts": {
"e2e": "node ./node_modules/@lvce-editor/test-with-playwright/bin/test-with-playwright.js --only-extension=. --test-path=./e2e"
}
}
```

```js
test('sample.hello-world', async () => {
const sideBar = Locator('#SideBar')
await expect(sideBar).toBeVisible()
})
```

## Gitpod

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/test-with-playwright)