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: 28 days ago
JSON representation
Write extension e2e tests for Lvce editor
- Host: GitHub
- URL: https://github.com/lvce-editor/test-with-playwright
- Owner: lvce-editor
- License: mit
- Created: 2022-06-28T13:34:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-02-18T16:33:47.000Z (29 days ago)
- Last Synced: 2026-02-18T19:05:42.805Z (29 days ago)
- Topics: e2e-tests, lvce-editor
- Language: TypeScript
- Homepage:
- Size: 3.92 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
})
```