- Learn more about Allure Report at https://allurereport.org
- 📚 Documentation – discover official documentation for Allure Report
- ❓ Questions and Support – get help from the team and community
- 📢 Official announcements – be in touch with the latest updates
- 💬 General Discussion – engage in casual conversations, share insights and ideas with the community
The plugin generates a classic Allure Report.
Use your favorite package manager to install the package:
npm add @allurereport/plugin-classic
yarn add @allurereport/plugin-classic
pnpm add @allurereport/plugin-classic
Then, add the plugin to the Allure configuration file:
import { defineConfig } from "allure";
export default defineConfig({
name: "Allure Report",
output: "./allure-report",
historyPath: "./history.jsonl",
plugins: {
+ classic: {
+ options: {
+ reportName: "HelloWorld",
+ },
+ },
},
});
The plugin accepts the following options:
Option | Description | Type | Default |
---|---|---|---|
reportName |
Name of the report | string |
Allure Report |
singleFile |
Writes the report as a single index.html file |
boolean |
false |
reportLanguage |
Default language of the report | string |
OS language |