UNPKG

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

Version:

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

11 lines 740 B
import OctaneBuildConfig from './OctaneBuildConfig'; /** * 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 {string} 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: string) => string; export default convertGherkinXMLToOctaneXML; //# sourceMappingURL=gherkinConvertionService.d.ts.map