UNPKG

@xray-app/xray-automation

Version:

Library for uploading test results to Xray Test Management

21 lines (20 loc) 1.35 kB
import { XrayCloudClient } from "./xray-cloud-client"; import { XrayCloudResponseV2 } from "./xray-cloud-response-v2"; import { XrayCloudGraphQLResponseV2 } from "./xray-cloud-graphql-response-v2"; import { XrayCloudGraphQLErrorResponse } from "./xray-cloud-graphql-error-response"; import { XrayDatacenterClient } from "./xray-datacenter-client"; import type { XraySettings } from "../types/xray-settings"; import type { ReportConfig } from "../types/report-config"; import { XrayErrorResponse } from "./xray-error-response"; import { XrayDatacenterResponseV1 } from "./xray-datacenter-response-v1"; import { XrayDatacenterResponseV2 } from "./xray-datacenter-response-v2"; declare const XRAY_FORMAT = "xray"; declare const JUNIT_FORMAT = "junit"; declare const TESTNG_FORMAT = "testng"; declare const ROBOT_FORMAT = "robot"; declare const NUNIT_FORMAT = "nunit"; declare const XUNIT_FORMAT = "xunit"; declare const CUCUMBER_FORMAT = "cucumber"; declare const BEHAVE_FORMAT = "behave"; export { XRAY_FORMAT, JUNIT_FORMAT, TESTNG_FORMAT, ROBOT_FORMAT, NUNIT_FORMAT, XUNIT_FORMAT, CUCUMBER_FORMAT, BEHAVE_FORMAT, XrayDatacenterClient, XrayErrorResponse, XrayDatacenterResponseV1, XrayDatacenterResponseV2, XrayCloudClient, XrayCloudGraphQLResponseV2, XrayCloudGraphQLErrorResponse, XrayCloudResponseV2, }; export type { XraySettings, ReportConfig };