UNPKG

@microfocus/alm-octane-test-result-convertion

Version:

A NodeJS library for converting different kinds of test reports into OpenText SDP / SDM format.

12 lines 817 B
import OctaneBuildConfig from './OctaneBuildConfig'; import { FrameworkType } from '../model/common/FrameworkType'; /** * Convert Gherkin format XML to OpenText SDP / SDM format XML * @param {string} gherkinXML - string containing Gherkin format XML * @param {OctaneBuildConfig} octaneBuildConfig - OpenText SDP / SDM build configuration data (eg.: job id, buiild id, server id etc.) * @param {FrameworkType} framework - Testing framework used to run the automated tests * @returns {string} - string containing converted XML (returns the OpenText SDP / SDM format XML) */ declare const convertGherkinXMLToOctaneXML: (gherkinXML: string, octaneBuildConfig: OctaneBuildConfig, framework: FrameworkType) => string; export default convertGherkinXMLToOctaneXML; //# sourceMappingURL=gherkinConvertionService.d.ts.map