How to add custom filter #3008
Unanswered
spells39
asked this question in
Questions & Support
Replies: 1 comment 4 replies
-
Hi, @spells39! This feature exists in Allure 3. To use it, set the import { defineConfig } from "allure";
export default defineConfig({
output: "./out/allure-report",
plugins: {
awesome: {
options: {
filter: ({ links }) => links.some(({ type }) => type === "issue"),
},
},
},
}); By default, Allure 3 loads the configuration from |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How can I add a custom filter to an allure report, for example, a filter based on whether a test has a bug attached?
Beta Was this translation helpful? Give feedback.
All reactions