1 |
|
2 |
|
3 | import { PathLike } from "fs";
|
4 | import { Category, TestResult, TestResultContainer } from "../model.js";
|
5 | import { AllureWriter } from "./AllureWriter.js";
|
6 | export declare class MessageAllureWriter implements AllureWriter {
|
7 | writeAttachment(name: string, content: Buffer | string, encoding?: BufferEncoding): void;
|
8 | writeAttachmentFromPath(from: PathLike, distFileName: string): void;
|
9 | writeEnvironmentInfo(info?: Record<string, string | undefined>): void;
|
10 | writeCategoriesDefinitions(categories: Category[]): void;
|
11 | writeGroup(result: TestResultContainer): void;
|
12 | writeResult(result: TestResult): void;
|
13 | }
|