add html reporting to smoke tests

This commit is contained in:
Ankita Shrivastava 2024-07-03 14:07:04 -04:00
Родитель 2ab7a0edf5
Коммит f0d78f2b76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F3B1701360EA9310
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -656,6 +656,19 @@ jobs:
- run-playwright-tests:
project: << parameters.project >>
- store-artifacts
- run:
name: create HTML Reports
command: |
cd artifacts/blob-report
echo "Creating HTML reports"
ls -l
if ls *.zip 1> /dev/null 2>&1; then
npx playwright test --reporter=html
else
echo "No report zip files found, skipping HTML merge."
fi
- store_artifacts:
path: playwright-report
# Runs functional tests using playwright. These tests support splitting
# and parallel execution.