UNPKG

declarative-e2e-test

Version:
11 lines (10 loc) 404 B
import { ITestSuite } from 'declarative-test-structure-generator'; import { IWithName } from './shared'; import { TestBlockDefinition } from './test-block'; declare type arrayWithNameOrObject<T> = Array<T & IWithName> | { [k: string]: T; }; export interface ITestRequestSuite extends Omit<ITestSuite, 'tests'> { tests: arrayWithNameOrObject<TestBlockDefinition | ITestRequestSuite>; } export {};