UNPKG

@dbouckaert/zephyr-scale-cloud-reporter

Version:

ZH Cloud, or zephyr helpers is a Node JS framework that implements test suites with Zephyr scale for Jira. It uses a soft-assert function to absorb failing assertions and translate them to a true/false value.

14 lines (13 loc) 377 B
import { TestCases } from './testcases.interface'; export interface Variables { zephyrURL: string; jiraURL: string; jiraApiToken: string; zephyrApiToken: string; projectKey: string; testCycleName: string; defaultJiraDisplayName: string; jiraDisplayName: string; testCasesArray: TestCases; } export declare const defaultVariables: Variables;