UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

37 lines (34 loc) 973 B
/* eslint-disable @typescript-eslint/no-empty-object-type */ /* eslint-disable @typescript-eslint/no-explicit-any */ import { Ibdd_in, Ibdd_out } from "../../CoreTypes"; import { BaseBuilder } from "../basebuilder"; export type I = Ibdd_in< {}, // iinput BaseBuilder<any, any, any, any, any, any>, // isubject BaseBuilder<any, any, any, any, any, any>, // istore BaseBuilder<any, any, any, any, any, any>, // iselection () => BaseBuilder<any, any, any, any, any, any>, // given (store: any) => any, // when (store: any) => any // then >; export type O = Ibdd_out< // Suites { Default: [string]; }, // Givens { "the default BaseBuilder": []; "a BaseBuilder with TestInput": []; "a BaseBuilder with Test Resource Requirements": []; }, // Whens {}, // No whens in these tests // Thens { "it is initialized": []; "it generates TestSpecifications": []; "it creates jobs": []; "it tracks artifacts": []; } >;