```shell npm install -D @playwright/test@latest npx playwright install --with-deps ```
npm install ui-tests``shell`
npm install -D @playwright/test@latest
npx playwright install --with-deps
`shell
cd packages/ui-tests
npm run test
`
By adding --ui one can watch what's happening in the browser, albeit very fast.
Allows you to see browser recording and step by step actions being performed and a screenshot for each.
`shell`
npm run test-ide
Running tests step by step:
`shell`
npm run debug
Displays testing report, performed actions and screenshots for each.
`shell`
npm run show-report
Run tests in specific file:
`shell`
npm run test smoke.spec.ts
Run test with title "smoke test"
`shell`
npx playwright test -g "smoke test"
if running. This will speed up the edit-test cycle.To start the visual editor (one time):
`shell
cd packages/visual-editor
npm run dev
``