testeranto 0.81.3 → 0.82.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,7 @@ export declare abstract class BaseSuite<ITestShape extends IBaseTest<unknown, un
11
11
  testResourceConfiguration: ITTestResourceConfiguration;
12
12
  index: number;
13
13
  constructor(name: string, index: number, givens?: IGivens<ITestShape>, checks?: BaseCheck<ITestShape>[]);
14
+ features(): {};
14
15
  toObj(): {
15
16
  name: string;
16
17
  givens: {
@@ -4,5 +4,5 @@ import { ITTestResourceRequest } from "./index.js";
4
4
  import { ClassBuilder } from "./classBuilder.js";
5
5
  export default abstract class Testeranto<ITestShape extends IBaseTest<unknown, unknown, unknown, unknown, unknown, unknown, unknown, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>> extends ClassBuilder<ITestShape> {
6
6
  constructor(input: ITestShape["iinput"], testSpecification: ITestSpecification<ITestShape>, testImplementation: ITestImplementation<ITestShape>, testResourceRequirement: ITTestResourceRequest | undefined, testInterface: Partial<ITestInterface<ITestShape>>);
7
- abstract receiveTestResourceConfig(partialTestResource: string): any;
7
+ abstract receiveTestResourceConfig(partialTestResource: string): Promise<string[]>;
8
8
  }
@@ -42,6 +42,7 @@ export declare type ITestJob<T = PM> = {
42
42
  failed: number;
43
43
  artifacts: Promise<unknown>[];
44
44
  logPromise: Promise<unknown>;
45
+ features: string[];
45
46
  }>;
46
47
  };
47
48
  export declare type ITestResults = Promise<{