Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.92 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.92 KB

Log Plugin

Allure Report logo


Overview

This plugin prints report in the terminal.

Install

Use your favorite package manager to install the package:

npm add @allurereport/plugin-log
yarn add @allurereport/plugin-log
pnpm add @allurereport/plugin-log

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

Options

The plugin accepts the following options:

Option Description Type Default
allSteps Include all steps in the report boolean false
withTrace Include step trace in the report boolean false
groupBy Group tests by given label suites | features | packages | none none