Dmitry Baev

Results 300 comments of Dmitry Baev

starting 3.0.0, you can import Allure Runtime API from `allure-js-commons`: ```ts import { label, link, issue, tms, step, attachment, } from "allure-js-commons"; // or import * as allure from "allure-js-commons";...

@dimas-rymera support for Cypress hooks introduced in 3.0.0-beta.4, please give it a try

@lifanov-rza, we added support for beforeEach & afterEach CodeceptJS hooks; however, hook methods in helpers are not reported by CodeceptJS, so we're still figuring out how we should handle it.

The detailed explanation can be found at https://stackoverflow.com/a/78751733/3915166 > older Allure Commandline releases (before 2.16.0) had an error that would not let users generate a report from Allure Results with...

the main idea is that Allure can generate a single html file with report summary to /allure-report/export folder, and then you can configure Jenkins to send it via email. At...

@bop0hz At the moment there is draft template present in allure generator. See https://github.com/allure-framework/allure2/blob/c4496b2ae22465affe64a24acafe72349ac1153a/allure-generator/src/main/java/io/qameta/allure/mail/MailPlugin.java https://github.com/allure-framework/allure2/blob/c4496b2ae22465affe64a24acafe72349ac1153a/allure-generator/src/main/resources/tpl/mail.html.ftl If you are going to implement it, here is some thoughts: 1) we need to...

Our Bintray account has been rate-limited due to overuse. JFrog team currently working on the issue https://twitter.com/QametaSoftware/status/1034818876561928193

since `[email protected]` you can specify environment info and categories via plugin config: ```js exports.config = { plugins: { allure: { require: require.resolve("allure-codeceptjs"), enabled: true, environmentInfo: { "app version": "123.0.1", "some...

Could you please provide a sample project (GitHub repo) to reproduce the problem?