testeranto 0.79.26 → 0.79.28
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.
- package/TaskMan1.Dockerfile +1 -1
- package/dist/common/Features.js +1 -34
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/Features.js +0 -32
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/Features.d.ts +0 -33
- package/dist/types/Types.d.ts +1 -1
- package/dist/types/lib/types.d.ts +0 -2
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/Features.ts +0 -54
- package/src/Types.ts +0 -1
- package/src/lib/types.ts +0 -2
package/dist/types/Features.d.ts
CHANGED
|
@@ -27,39 +27,6 @@ export declare class TesterantoGraphDirectedAcyclic implements TesterantoGraph {
|
|
|
27
27
|
constructor(name: string);
|
|
28
28
|
connect(to: any, from: any, relation?: string): void;
|
|
29
29
|
}
|
|
30
|
-
export declare class TesterantoFeatures {
|
|
31
|
-
features: Record<string, BaseFeature>;
|
|
32
|
-
graphs: {
|
|
33
|
-
undirected: TesterantoGraphUndirected[];
|
|
34
|
-
directed: TesterantoGraphDirected[];
|
|
35
|
-
dags: TesterantoGraphDirectedAcyclic[];
|
|
36
|
-
};
|
|
37
|
-
constructor(features: Record<string, BaseFeature>, graphs: {
|
|
38
|
-
undirected: TesterantoGraphUndirected[];
|
|
39
|
-
directed: TesterantoGraphDirected[];
|
|
40
|
-
dags: TesterantoGraphDirectedAcyclic[];
|
|
41
|
-
});
|
|
42
|
-
networks(): (TesterantoGraphUndirected | TesterantoGraphDirected | TesterantoGraphDirectedAcyclic)[];
|
|
43
|
-
toObj(): {
|
|
44
|
-
features: {
|
|
45
|
-
inNetworks: {
|
|
46
|
-
network: string;
|
|
47
|
-
neighbors: any;
|
|
48
|
-
}[];
|
|
49
|
-
name: string;
|
|
50
|
-
}[];
|
|
51
|
-
networks: ({
|
|
52
|
-
name: string;
|
|
53
|
-
graph: Graph;
|
|
54
|
-
} | {
|
|
55
|
-
name: string;
|
|
56
|
-
graph: Graph;
|
|
57
|
-
} | {
|
|
58
|
-
name: string;
|
|
59
|
-
graph: Graph;
|
|
60
|
-
})[];
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
30
|
export declare type IT_FeatureNetwork = {
|
|
64
31
|
name: string;
|
|
65
32
|
};
|
package/dist/types/Types.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare type IEntry<ITestShape extends IBaseTest<unknown, unknown, unknow
|
|
|
9
9
|
export declare type ITestSpecification<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>>> = (Suite: {
|
|
10
10
|
[K in keyof ITestShape["suites"]]: (name: string, givens: IGivens<ITestShape>, checks: BaseCheck<ITestShape>[]) => BaseSuite<ITestShape>;
|
|
11
11
|
}, Given: {
|
|
12
|
-
[K in keyof ITestShape["givens"]]: (
|
|
12
|
+
[K in keyof ITestShape["givens"]]: (whens: BaseWhen<ITestShape>[], thens: BaseThen<ITestShape>[], ...xtrasB: ITestShape["givens"][K]) => BaseGiven<ITestShape>;
|
|
13
13
|
}, When: {
|
|
14
14
|
[K in keyof ITestShape["whens"]]: (...xtrasC: ITestShape["whens"][K]) => BaseWhen<ITestShape>;
|
|
15
15
|
}, Then: {
|
|
@@ -9,7 +9,6 @@ export declare type ITestTypes = [string, IRunTime, {
|
|
|
9
9
|
export declare type IJsonConfig = {
|
|
10
10
|
outdir: string;
|
|
11
11
|
tests: ITestTypes[];
|
|
12
|
-
features: string;
|
|
13
12
|
botEmail: string;
|
|
14
13
|
};
|
|
15
14
|
export declare type IBaseConfig = {
|
|
@@ -17,7 +16,6 @@ export declare type IBaseConfig = {
|
|
|
17
16
|
debugger: boolean;
|
|
18
17
|
devMode: boolean;
|
|
19
18
|
externals: string[];
|
|
20
|
-
features: string;
|
|
21
19
|
minify: boolean;
|
|
22
20
|
nodePlugins: any[];
|
|
23
21
|
outbase: string;
|