- 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
This plugin indicates the report generation progress in the terminal.
Use your favorite package manager to install the package:
npm add @allurereport/plugin-progress
yarn add @allurereport/plugin-progress
pnpm add @allurereport/plugin-progress
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: {
+ progress: {
+ options: {
+ },
+ },
},
});