Describe the bug
I am using allure 3 v3.0.0-beta.22 with playwright/js v1.56.1, Node v24.10.0 on Windows 11.
Config file:
import { defineConfig } from 'allure'
export default defineConfig({
name: 'Allure Prestashop E2E Report',
output: './report/allure-report',
plugins: {
awesome: {
options: {
singleFile: true,
reportLanguage: 'en'
}
}
}
})
To Reproduce
Steps to reproduce the behavior:
- Set the singleFile option to true in the allurerc.js
- Run tests with command - npx allure run -- npx playwright test .spec.js
- When test finishes the allure-report folder is generated containing index.html and summary.json files
- Opening the standalone index.html file in any browser results in empty report page with error message displayed - Data "widgets/default/tree.json" not found! (see attached screenshot)
Expected behavior
Report is opened and displaying the test results
Screenshots
Desktop (please complete the following information):
- OS: Windows 11
- Browser Chrome Version 141.0.7390.125
- Node v24.10.0
- playwright/js v1.56.1
- allure 3 v3.0.0-beta.22
