UNPKG

allure-js-commons

Version:
8 lines 378 B
import { readFileSync } from "fs"; import { AllureInMemoryAllureWriter as CommonInMemoryWriter } from "../../framework/writers/AllureInMemoryWriter"; export class AllureInMemoryWriter extends CommonInMemoryWriter { writeAttachmentFromPath(from, toFileName) { this.attachments[toFileName] = readFileSync(from); } } //# sourceMappingURL=InMemoryAllureWriter.js.map