We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe Feature Right now, the History entries are limited to 20 and thread columns in each graph (https://allurereport.org/docs/history-and-retries/#how-to-enable-history). It would be nice if this could be configurable and not a fixed value.
Describe the solution Allure could make this limit configurable via vitest.config.ts
vitest.config.ts
Example:
import { defineConfig } from "vitest/config"; export default defineConfig({ test: { dir: "./test/spec", testTimeout: 20000, setupFiles: ["allure-vitest/setup"], reporters: ["basic", ["allure-vitest/reporter", { resultsDir: "./out/allure-results", allureResultsLimit: "100"}]], typecheck: { enabled: true, tsconfig: "./tsconfig.test.json", }, }, });
Thank you!
The text was updated successfully, but these errors were encountered:
The limits are enforced by the allure report generator and can't be changed via reporter config.
closed as a duplicate of allure-framework/allure2#1331
Sorry, something went wrong.
@baev is the plan to work on this allure-framework/allure2#1331? This is opened June 23 2021
The issue will be addressed in the upcoming Allure 3.
No branches or pull requests
Describe Feature
Right now, the History entries are limited to 20 and thread columns in each graph (https://allurereport.org/docs/history-and-retries/#how-to-enable-history). It would be nice if this could be configurable and not a fixed value.
Describe the solution
Allure could make this limit configurable via
vitest.config.ts
Example:
Thank you!
The text was updated successfully, but these errors were encountered: