@dbouckaert/zephyr-scale-reporter
Version:
ZH, 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.
17 lines (16 loc) • 438 B
TypeScript
import { TestCase } from './testcases.interface';
export interface Variables {
url: string;
username: string;
password: string | undefined;
environment: string | undefined;
jirauser: string;
projectName: string;
projectId: string;
defaultJiraId: string;
jiraUserId: string;
envId: number;
testCasesArray: TestCase[];
folderName?: string;
}
export declare const defaultVariables: Variables;