UNPKG

@mmisty/cypress-allure-adapter

Version:

cypress allure adapter to generate allure results during tests execution (Allure TestOps compatible)

13 lines (12 loc) 375 B
import { AllureTasks } from './allure-types'; export type ReporterOptions = { allureAddVideoOnPass: boolean; allureResults: string; techAllureResults: string; videos: string; screenshots: string; showDuplicateWarn: boolean; allureSkipSteps: string; isTest: boolean; }; export declare const allureTasks: (opts: ReporterOptions) => AllureTasks;