- 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 prints report in the terminal.
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: {
+ },
+ },
},
});
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 |