Skip to content

Commit

Permalink
feat: enable cucumberjson reader in core/report
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Dec 20, 2024
1 parent d5f096e commit 6522cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/report.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Plugin, PluginContext, PluginState, ReportFiles, ResultFile } from "@allurereport/plugin-api";
import { allure1, allure2, attachments, junitXml } from "@allurereport/reader";
import { allure1, allure2, attachments, cucumberjson, junitXml } from "@allurereport/reader";
import { PathResultFile, type ResultsReader } from "@allurereport/reader-api";
import console from "node:console";
import { randomUUID } from "node:crypto";
Expand Down Expand Up @@ -37,7 +37,7 @@ export class AllureReport {
constructor(opts: FullConfig) {
const {
name,
readers = [allure1, allure2, junitXml, attachments],
readers = [allure1, allure2, cucumberjson, junitXml, attachments],
plugins = [],
history,
known,
Expand Down

0 comments on commit 6522cb1

Please sign in to comment.