testeranto 0.166.0 → 0.167.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.
- package/dist/common/src/Pure.js +2 -2
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/common/src/lib/basebuilder.js +9 -7
- package/dist/common/src/lib/core.test/MockCore.js +17 -15
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/Pure.js +2 -2
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/module/src/lib/basebuilder.js +9 -7
- package/dist/module/src/lib/core.test/MockCore.js +17 -15
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/src/lib/index.d.ts +0 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/Pure.ts +2 -2
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +1 -1
- package/src/lib/basebuilder.ts +9 -9
- package/src/lib/core.test/MockCore.ts +26 -19
- package/src/lib/index.ts +1 -1
- package/testeranto/bundles/node/allTests/chunk-H2IBV7SY.mjs +113 -0
- package/testeranto/bundles/node/allTests/chunk-IDCUSTSM.mjs +669 -0
- package/testeranto/bundles/node/allTests/chunk-ZHOULXPN.mjs +252 -0
- package/testeranto/bundles/node/allTests/metafile.json +28 -28
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +11 -8
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
- package/testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs +666 -0
- package/testeranto/bundles/pure/allTests/chunk-5SBJWHSZ.mjs +200 -0
- package/testeranto/bundles/pure/allTests/metafile.json +33 -33
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +2 -2
- package/testeranto/bundles/web/allTests/chunk-46E6YGGN.mjs +847 -0
- package/testeranto/bundles/web/allTests/metafile.json +10 -10
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +1 -1
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +2 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -12
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +2 -5
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -0
- package/testeranto/reports/allTests/summary.json +2 -2
- package/tsc.log +236 -234
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
PM,
|
|
4
|
+
TesterantoCore,
|
|
5
|
+
defaultTestResourceRequirement
|
|
6
|
+
} from "./chunk-4ULDTZFU.mjs";
|
|
7
|
+
|
|
8
|
+
// src/PM/pure.ts
|
|
9
|
+
var PM_Pure = class extends PM {
|
|
10
|
+
constructor(t) {
|
|
11
|
+
super();
|
|
12
|
+
this.server = {};
|
|
13
|
+
this.testResourceConfiguration = t;
|
|
14
|
+
}
|
|
15
|
+
getInnerHtml(selector, page) {
|
|
16
|
+
throw new Error("pure.ts getInnHtml not implemented");
|
|
17
|
+
return Promise.resolve("");
|
|
18
|
+
}
|
|
19
|
+
stopSideCar(uid) {
|
|
20
|
+
throw new Error("pure.ts getInnHtml not implemented");
|
|
21
|
+
return Promise.resolve(true);
|
|
22
|
+
}
|
|
23
|
+
start() {
|
|
24
|
+
return new Promise((r) => r());
|
|
25
|
+
}
|
|
26
|
+
stop() {
|
|
27
|
+
return new Promise((r) => r());
|
|
28
|
+
}
|
|
29
|
+
launchSideCar(n) {
|
|
30
|
+
return globalThis["launchSideCar"](n, this.testResourceConfiguration.name);
|
|
31
|
+
}
|
|
32
|
+
pages() {
|
|
33
|
+
return globalThis["pages"]();
|
|
34
|
+
}
|
|
35
|
+
waitForSelector(p, s) {
|
|
36
|
+
return globalThis["waitForSelector"](p, s);
|
|
37
|
+
}
|
|
38
|
+
closePage(p) {
|
|
39
|
+
return globalThis["closePage"](p);
|
|
40
|
+
}
|
|
41
|
+
goto(cdpPage, url) {
|
|
42
|
+
return globalThis["goto"](cdpPage.mainFrame()._id, url);
|
|
43
|
+
}
|
|
44
|
+
newPage() {
|
|
45
|
+
return globalThis["newPage"]();
|
|
46
|
+
}
|
|
47
|
+
$(selector) {
|
|
48
|
+
return globalThis["$"](selector);
|
|
49
|
+
}
|
|
50
|
+
isDisabled(selector) {
|
|
51
|
+
return globalThis["isDisabled"](selector);
|
|
52
|
+
}
|
|
53
|
+
getAttribute(selector, attribute) {
|
|
54
|
+
return globalThis["getAttribute"](selector, attribute);
|
|
55
|
+
}
|
|
56
|
+
getValue(selector) {
|
|
57
|
+
return globalThis["getValue"](selector);
|
|
58
|
+
}
|
|
59
|
+
focusOn(selector) {
|
|
60
|
+
return globalThis["focusOn"](selector);
|
|
61
|
+
}
|
|
62
|
+
typeInto(selector, value) {
|
|
63
|
+
return globalThis["typeInto"](selector, value);
|
|
64
|
+
}
|
|
65
|
+
page() {
|
|
66
|
+
return globalThis["page"]();
|
|
67
|
+
}
|
|
68
|
+
click(selector) {
|
|
69
|
+
return globalThis["click"](selector);
|
|
70
|
+
}
|
|
71
|
+
screencast(opts, page) {
|
|
72
|
+
return globalThis["screencast"](
|
|
73
|
+
{
|
|
74
|
+
...opts,
|
|
75
|
+
path: this.testResourceConfiguration.fs + "/" + opts.path
|
|
76
|
+
},
|
|
77
|
+
page,
|
|
78
|
+
this.testResourceConfiguration.name
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
screencastStop(p) {
|
|
82
|
+
return globalThis["screencastStop"](p);
|
|
83
|
+
}
|
|
84
|
+
customScreenShot(opts, page) {
|
|
85
|
+
return globalThis["customScreenShot"](
|
|
86
|
+
{
|
|
87
|
+
...opts,
|
|
88
|
+
path: this.testResourceConfiguration.fs + "/" + opts.path
|
|
89
|
+
},
|
|
90
|
+
page,
|
|
91
|
+
this.testResourceConfiguration.name
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
existsSync(destFolder) {
|
|
95
|
+
return globalThis["existsSync"](
|
|
96
|
+
this.testResourceConfiguration.fs + "/" + destFolder
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
mkdirSync() {
|
|
100
|
+
return globalThis["mkdirSync"](this.testResourceConfiguration.fs + "/");
|
|
101
|
+
}
|
|
102
|
+
write(uid, contents) {
|
|
103
|
+
return globalThis["write"](uid, contents);
|
|
104
|
+
}
|
|
105
|
+
writeFileSync(filepath, contents) {
|
|
106
|
+
return globalThis["writeFileSync"](
|
|
107
|
+
this.testResourceConfiguration.fs + "/" + filepath,
|
|
108
|
+
contents,
|
|
109
|
+
this.testResourceConfiguration.name
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
createWriteStream(filepath) {
|
|
113
|
+
return globalThis["createWriteStream"](
|
|
114
|
+
this.testResourceConfiguration.fs + "/" + filepath,
|
|
115
|
+
this.testResourceConfiguration.name
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
end(uid) {
|
|
119
|
+
return globalThis["end"](uid);
|
|
120
|
+
}
|
|
121
|
+
customclose() {
|
|
122
|
+
globalThis["customclose"](
|
|
123
|
+
this.testResourceConfiguration.fs,
|
|
124
|
+
this.testResourceConfiguration.name
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
testArtiFactoryfileWriter(tLog, callback) {
|
|
128
|
+
}
|
|
129
|
+
// startPuppeteer(options?: any): any {
|
|
130
|
+
// // return puppeteer.connect(options).then((b) => {
|
|
131
|
+
// // this.browser = b;
|
|
132
|
+
// // });
|
|
133
|
+
// }
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
// src/Pure.ts
|
|
137
|
+
var PureTesteranto = class extends TesterantoCore {
|
|
138
|
+
constructor(input, testSpecification, testImplementation, testResourceRequirement, testAdapter) {
|
|
139
|
+
super(
|
|
140
|
+
input,
|
|
141
|
+
testSpecification,
|
|
142
|
+
testImplementation,
|
|
143
|
+
testResourceRequirement,
|
|
144
|
+
testAdapter,
|
|
145
|
+
() => {
|
|
146
|
+
}
|
|
147
|
+
);
|
|
148
|
+
}
|
|
149
|
+
async receiveTestResourceConfig(partialTestResource) {
|
|
150
|
+
console.log(
|
|
151
|
+
"[DEBUG] receiveTestResourceConfig called with:",
|
|
152
|
+
partialTestResource
|
|
153
|
+
);
|
|
154
|
+
const t = JSON.parse(partialTestResource);
|
|
155
|
+
const pm = new PM_Pure(t);
|
|
156
|
+
console.log("[DEBUG] Current test jobs:", this.testJobs?.length);
|
|
157
|
+
if (!this.testJobs || this.testJobs.length === 0) {
|
|
158
|
+
console.error(
|
|
159
|
+
"[ERROR] No test jobs available - checking specs:",
|
|
160
|
+
this.specs?.length
|
|
161
|
+
);
|
|
162
|
+
console.error("[ERROR] Test implementation:", this.testImplementation);
|
|
163
|
+
return {
|
|
164
|
+
failed: true,
|
|
165
|
+
fails: 1,
|
|
166
|
+
artifacts: [],
|
|
167
|
+
// logPromise: Promise.resolve(),
|
|
168
|
+
features: []
|
|
169
|
+
};
|
|
170
|
+
}
|
|
171
|
+
try {
|
|
172
|
+
console.log("[DEBUG] Executing test job with PM:", pm);
|
|
173
|
+
const result = await this.testJobs[0].receiveTestResourceConfig(pm);
|
|
174
|
+
console.log("[DEBUG] Test job completed with result:", result);
|
|
175
|
+
return result;
|
|
176
|
+
} catch (e) {
|
|
177
|
+
console.error("[ERROR] Test job failed:", e);
|
|
178
|
+
return {
|
|
179
|
+
failed: true,
|
|
180
|
+
fails: 1,
|
|
181
|
+
artifacts: [],
|
|
182
|
+
// logPromise: Promise.resolve(),
|
|
183
|
+
features: []
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
var Pure_default = async (input, testSpecification, testImplementation, testAdapter, testResourceRequirement = defaultTestResourceRequirement) => {
|
|
189
|
+
return new PureTesteranto(
|
|
190
|
+
input,
|
|
191
|
+
testSpecification,
|
|
192
|
+
testImplementation,
|
|
193
|
+
testResourceRequirement,
|
|
194
|
+
testAdapter
|
|
195
|
+
);
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
export {
|
|
199
|
+
Pure_default
|
|
200
|
+
};
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
{
|
|
27
27
|
"id": "",
|
|
28
28
|
"location": {
|
|
29
|
-
"column":
|
|
29
|
+
"column": 7,
|
|
30
30
|
"file": "src/Pure.ts",
|
|
31
|
-
"length":
|
|
32
|
-
"line":
|
|
33
|
-
"lineText": "
|
|
31
|
+
"length": 16,
|
|
32
|
+
"line": 13,
|
|
33
|
+
"lineText": "} from \"./lib/index.js\";",
|
|
34
34
|
"namespace": "",
|
|
35
35
|
"suggestion": ""
|
|
36
36
|
},
|
|
@@ -41,32 +41,32 @@
|
|
|
41
41
|
{
|
|
42
42
|
"id": "",
|
|
43
43
|
"location": {
|
|
44
|
-
"column":
|
|
45
|
-
"file": "src/
|
|
46
|
-
"length":
|
|
47
|
-
"line":
|
|
48
|
-
"lineText": "import {
|
|
44
|
+
"column": 24,
|
|
45
|
+
"file": "src/Pure.ts",
|
|
46
|
+
"length": 14,
|
|
47
|
+
"line": 15,
|
|
48
|
+
"lineText": "import { PM_Pure } from \"./PM/pure.js\";",
|
|
49
49
|
"namespace": "",
|
|
50
50
|
"suggestion": ""
|
|
51
51
|
},
|
|
52
52
|
"notes": [],
|
|
53
53
|
"pluginName": "console-detector",
|
|
54
|
-
"text": "call of \"console.
|
|
54
|
+
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"id": "",
|
|
58
58
|
"location": {
|
|
59
|
-
"column":
|
|
59
|
+
"column": 23,
|
|
60
60
|
"file": "src/Web.ts",
|
|
61
|
-
"length":
|
|
62
|
-
"line":
|
|
63
|
-
"lineText": "} from \"./
|
|
61
|
+
"length": 10,
|
|
62
|
+
"line": 11,
|
|
63
|
+
"lineText": "import { PM_Web } from \"./PM/web\";",
|
|
64
64
|
"namespace": "",
|
|
65
65
|
"suggestion": ""
|
|
66
66
|
},
|
|
67
67
|
"notes": [],
|
|
68
68
|
"pluginName": "console-detector",
|
|
69
|
-
"text": "call of \"console.
|
|
69
|
+
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"id": "",
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"metafile": {
|
|
298
298
|
"inputs": {
|
|
299
299
|
"src/lib/index.ts": {
|
|
300
|
-
"bytes":
|
|
300
|
+
"bytes": 3568,
|
|
301
301
|
"imports": [
|
|
302
302
|
{
|
|
303
303
|
"path": "../PM/pure.js",
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
"format": "esm"
|
|
371
371
|
},
|
|
372
372
|
"src/lib/basebuilder.ts": {
|
|
373
|
-
"bytes":
|
|
373
|
+
"bytes": 4874,
|
|
374
374
|
"imports": [
|
|
375
375
|
{
|
|
376
376
|
"path": "stream",
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
"format": "esm"
|
|
537
537
|
},
|
|
538
538
|
"src/Pure.ts": {
|
|
539
|
-
"bytes":
|
|
539
|
+
"bytes": 2597,
|
|
540
540
|
"imports": [
|
|
541
541
|
{
|
|
542
542
|
"path": "./CoreTypes.js",
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
"format": "esm"
|
|
761
761
|
},
|
|
762
762
|
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
763
|
-
"bytes":
|
|
763
|
+
"bytes": 1988,
|
|
764
764
|
"imports": [
|
|
765
765
|
{
|
|
766
766
|
"path": "../../CoreTypes",
|
|
@@ -873,11 +873,11 @@
|
|
|
873
873
|
"testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs": {
|
|
874
874
|
"imports": [
|
|
875
875
|
{
|
|
876
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
876
|
+
"path": "testeranto/bundles/pure/allTests/chunk-5SBJWHSZ.mjs",
|
|
877
877
|
"kind": "import-statement"
|
|
878
878
|
},
|
|
879
879
|
{
|
|
880
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
880
|
+
"path": "testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs",
|
|
881
881
|
"kind": "import-statement"
|
|
882
882
|
}
|
|
883
883
|
],
|
|
@@ -901,11 +901,11 @@
|
|
|
901
901
|
"testeranto/bundles/pure/allTests/src/Pure.test.mjs": {
|
|
902
902
|
"imports": [
|
|
903
903
|
{
|
|
904
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
904
|
+
"path": "testeranto/bundles/pure/allTests/chunk-5SBJWHSZ.mjs",
|
|
905
905
|
"kind": "import-statement"
|
|
906
906
|
},
|
|
907
907
|
{
|
|
908
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
908
|
+
"path": "testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs",
|
|
909
909
|
"kind": "import-statement"
|
|
910
910
|
}
|
|
911
911
|
],
|
|
@@ -923,10 +923,10 @@
|
|
|
923
923
|
},
|
|
924
924
|
"bytes": 12189
|
|
925
925
|
},
|
|
926
|
-
"testeranto/bundles/pure/allTests/chunk-
|
|
926
|
+
"testeranto/bundles/pure/allTests/chunk-5SBJWHSZ.mjs": {
|
|
927
927
|
"imports": [
|
|
928
928
|
{
|
|
929
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
929
|
+
"path": "testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs",
|
|
930
930
|
"kind": "import-statement"
|
|
931
931
|
}
|
|
932
932
|
],
|
|
@@ -938,15 +938,15 @@
|
|
|
938
938
|
"bytesInOutput": 3131
|
|
939
939
|
},
|
|
940
940
|
"src/Pure.ts": {
|
|
941
|
-
"bytesInOutput":
|
|
941
|
+
"bytesInOutput": 1787
|
|
942
942
|
}
|
|
943
943
|
},
|
|
944
|
-
"bytes":
|
|
944
|
+
"bytes": 5165
|
|
945
945
|
},
|
|
946
946
|
"testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs": {
|
|
947
947
|
"imports": [
|
|
948
948
|
{
|
|
949
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
949
|
+
"path": "testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs",
|
|
950
950
|
"kind": "import-statement"
|
|
951
951
|
}
|
|
952
952
|
],
|
|
@@ -965,7 +965,7 @@
|
|
|
965
965
|
"bytesInOutput": 708
|
|
966
966
|
},
|
|
967
967
|
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
968
|
-
"bytesInOutput":
|
|
968
|
+
"bytesInOutput": 906
|
|
969
969
|
},
|
|
970
970
|
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
971
971
|
"bytesInOutput": 3065
|
|
@@ -977,9 +977,9 @@
|
|
|
977
977
|
"bytesInOutput": 130
|
|
978
978
|
}
|
|
979
979
|
},
|
|
980
|
-
"bytes":
|
|
980
|
+
"bytes": 10806
|
|
981
981
|
},
|
|
982
|
-
"testeranto/bundles/pure/allTests/chunk-
|
|
982
|
+
"testeranto/bundles/pure/allTests/chunk-4ULDTZFU.mjs": {
|
|
983
983
|
"imports": [],
|
|
984
984
|
"exports": [
|
|
985
985
|
"BaseBuilder",
|
|
@@ -1002,7 +1002,7 @@
|
|
|
1002
1002
|
"bytesInOutput": 656
|
|
1003
1003
|
},
|
|
1004
1004
|
"src/lib/basebuilder.ts": {
|
|
1005
|
-
"bytesInOutput":
|
|
1005
|
+
"bytesInOutput": 2341
|
|
1006
1006
|
},
|
|
1007
1007
|
"src/lib/abstractBase.ts": {
|
|
1008
1008
|
"bytesInOutput": 3952
|
|
@@ -1017,7 +1017,7 @@
|
|
|
1017
1017
|
"bytesInOutput": 20
|
|
1018
1018
|
}
|
|
1019
1019
|
},
|
|
1020
|
-
"bytes":
|
|
1020
|
+
"bytes": 16772
|
|
1021
1021
|
}
|
|
1022
1022
|
}
|
|
1023
1023
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
Pure_default
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-5SBJWHSZ.mjs";
|
|
5
|
+
import "../chunk-4ULDTZFU.mjs";
|
|
6
6
|
|
|
7
7
|
// src/lib/pmProxy.test/mockPMBase.ts
|
|
8
8
|
var MockPMBase = class {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
Pure_default
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-5SBJWHSZ.mjs";
|
|
5
5
|
import {
|
|
6
6
|
BaseGiven,
|
|
7
7
|
BaseSuite,
|
|
8
8
|
BaseThen,
|
|
9
9
|
BaseWhen
|
|
10
|
-
} from "../../../chunk-
|
|
10
|
+
} from "../../../chunk-4ULDTZFU.mjs";
|
|
11
11
|
|
|
12
12
|
// src/lib/BaseSuite.test/mock.ts
|
|
13
13
|
var MockGiven = class extends BaseGiven {
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
PM,
|
|
5
5
|
TesterantoCore,
|
|
6
6
|
defaultTestResourceRequirement
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-4ULDTZFU.mjs";
|
|
8
8
|
|
|
9
9
|
// src/PM/web.ts
|
|
10
10
|
var PM_Web = class extends PM {
|
|
@@ -250,7 +250,7 @@ var MockBaseBuilder = class extends BaseBuilder {
|
|
|
250
250
|
failed: false,
|
|
251
251
|
fails: 0,
|
|
252
252
|
artifacts: [],
|
|
253
|
-
logPromise: Promise.resolve(),
|
|
253
|
+
// logPromise: Promise.resolve(),
|
|
254
254
|
features: []
|
|
255
255
|
});
|
|
256
256
|
}
|