npm run test:all:head# Run all tests
npm run test:all:headless
# Run UI tests only
npm run test:ui
# Run API tests only
npm run test:api
# Run Smoke tests (1 UI and 1 API)
npm run test:smoke
# Run Regression tests (2 UI and 2 API)
npm run test:regressionTest reports can be found in:
playwright-report/index.html- Playwright HTML reportallure-report/index.html- Allure report
-
Run tests to generate results:
npm run test:all:headless
-
Generate the report:
npm run allure:generate
-
View the report:
npm run allure:open
Or generate and view immediately:
npm run allure:serve