Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.41 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.41 KB

Progress Plugin

Allure Report logo


Overview

This plugin indicates the report generation progress in the terminal.

Install

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: {
+      },
+    },
  },
});