@microfocus/alm-octane-test-result-convertion
Version:
A NodeJS library for converting different kinds of test reports into OpenText SDP / SDM format.
22 lines • 562 B
TypeScript
import Properties from './Properties';
import TestCase from './TestCase';
export default interface TestSuite {
properties?: Properties;
testcase: TestCase[];
'system-out'?: string;
'system-err'?: string;
_attributes: {
name: string;
tests: string;
failures?: string;
errors?: string;
time?: string;
disabled?: string;
skipped?: string;
timestamp?: string;
hostname?: string;
id?: string;
package?: string;
};
}
//# sourceMappingURL=TestSuite.d.ts.map