testeranto 0.80.0 → 0.81.1
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/.aider.chat.history.md +980 -0
- package/.aider.input.history +87 -0
- package/.aider.tags.cache.v3/1c/30/af1de2ad7a137afeddb1b01e0c27.val +0 -0
- package/.aider.tags.cache.v3/1d/63/88318b65ce58b6bb0487e8ce2656.val +0 -0
- package/.aider.tags.cache.v3/2e/67/16ae65530b40038e48e00d666c63.val +0 -0
- package/.aider.tags.cache.v3/6f/94/80488a232866fcce7ee657da488b.val +0 -0
- package/.aider.tags.cache.v3/cache.db +0 -0
- package/.gitattributes +1 -0
- package/README.md +10 -6
- package/dist/common/src/Aider.js +116 -69
- package/dist/common/src/PM/main.js +49 -46
- package/dist/common/src/PM/node.js +1 -1
- package/dist/common/src/Project.js +46 -38
- package/dist/common/src/Puppeteer.js +44 -37
- package/dist/common/src/SubPackages/react-test-renderer/jsx/index.js +17 -2
- package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +39 -12
- package/dist/common/src/esbuildConfigs/web.js +3 -3
- package/dist/common/src/lib/abstractBase.js +41 -13
- package/dist/common/src/lib/basebuilder.js +6 -3
- package/dist/common/src/lib/core.js +47 -3
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/Aider.js +116 -69
- package/dist/module/src/PM/main.js +49 -46
- package/dist/module/src/PM/node.js +1 -1
- package/dist/module/src/Project.js +46 -38
- package/dist/module/src/Puppeteer.js +44 -37
- package/dist/module/src/SubPackages/react-test-renderer/jsx/index.js +17 -2
- package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +39 -12
- package/dist/module/src/esbuildConfigs/web.js +3 -3
- package/dist/module/src/lib/abstractBase.js +41 -13
- package/dist/module/src/lib/basebuilder.js +6 -3
- package/dist/module/src/lib/core.js +47 -3
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/src/PM/main.d.ts +7 -1
- package/dist/types/src/Project.d.ts +6 -1
- package/dist/types/src/lib/abstractBase.d.ts +1 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +11 -15
- package/secret +1 -0
- package/secret.env +2 -0
- package/src/Aider.ts +140 -97
- package/src/PM/main.ts +60 -56
- package/src/PM/node.ts +1 -1
- package/src/Project.ts +55 -48
- package/src/Puppeteer.ts +56 -49
- package/src/SubPackages/react-test-renderer/jsx/index.ts +25 -2
- package/src/esbuildConfigs/inputFilesPlugin.ts +77 -32
- package/src/esbuildConfigs/web.ts +3 -3
- package/src/lib/abstractBase.ts +48 -17
- package/src/lib/basebuilder.ts +8 -3
- package/src/lib/core.ts +55 -13
|
@@ -7,12 +7,18 @@ import { IBuiltConfig, ITestTypes } from "../lib/types";
|
|
|
7
7
|
import { PM } from "./index.js";
|
|
8
8
|
import { ITLog } from "../lib/index.js";
|
|
9
9
|
export declare class PM_Main extends PM {
|
|
10
|
-
|
|
10
|
+
shutdownMode: boolean;
|
|
11
11
|
configs: IBuiltConfig;
|
|
12
12
|
ports: Record<number, boolean>;
|
|
13
13
|
queue: any[];
|
|
14
|
+
registry: Record<string, boolean>;
|
|
14
15
|
constructor(configs: IBuiltConfig);
|
|
16
|
+
shutDown(): void;
|
|
17
|
+
customScreenShot(opts: object): void;
|
|
15
18
|
startPuppeteer(options: any, destfolder: string): Promise<any>;
|
|
19
|
+
checkForShutdown: () => void;
|
|
20
|
+
register: (src: string) => void;
|
|
21
|
+
deregister: (src: string) => void;
|
|
16
22
|
launchNode: (src: string, dest: string) => Promise<void>;
|
|
17
23
|
launchWebSideCar: (src: string, dest: string, testConfig: ITestTypes) => Promise<unknown>;
|
|
18
24
|
launchNodeSideCar: (src: string, dest: string, testConfig: ITestTypes) => Promise<void>;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { IBaseConfig, IRunTime } from "./lib/types.js";
|
|
2
2
|
export declare class ITProject {
|
|
3
3
|
config: IBaseConfig;
|
|
4
|
-
mode: `
|
|
4
|
+
mode: `DEV` | `PROD`;
|
|
5
|
+
nodeDone: boolean;
|
|
6
|
+
webDone: boolean;
|
|
5
7
|
constructor(configs: IBaseConfig);
|
|
8
|
+
onNodeDone: () => void;
|
|
9
|
+
onWebDone: () => void;
|
|
10
|
+
onDone: () => void;
|
|
6
11
|
getSecondaryEndpointsPoints(runtime?: IRunTime): string[];
|
|
7
12
|
}
|
|
@@ -27,6 +27,7 @@ export declare abstract class BaseSuite<ITestShape extends IBaseTest<unknown, un
|
|
|
27
27
|
features: string[];
|
|
28
28
|
}[];
|
|
29
29
|
fails: BaseGiven<ITestShape>[];
|
|
30
|
+
features: {};
|
|
30
31
|
};
|
|
31
32
|
setup(s: ITestShape["iinput"], artifactory: ITestArtifactory, tr: ITTestResourceConfiguration, pm: PM): Promise<ITestShape["isubject"]>;
|
|
32
33
|
assertThat(t: ITestShape["then"]): unknown;
|