testeranto 0.172.0 → 0.173.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/README.md +2 -4
- package/dist/common/src/PM/base.js +4 -0
- package/dist/common/src/PM/main.js +11 -4
- package/dist/common/src/PM/node.js +1 -1
- package/dist/common/src/PM/web.js +3 -3
- package/dist/common/src/ReportServer.js +2 -126
- package/dist/common/src/ReportServer.test.ts/index.js +78 -0
- package/dist/common/src/ReportServerLib.js +135 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/common/src/lib/abstractBase.js +2 -0
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/common/src/lib/basebuilder.js +8 -2
- package/dist/common/src/lib/pmProxy.js +54 -150
- package/dist/common/testeranto.config.js +35 -20
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/PM/base.js +4 -0
- package/dist/module/src/PM/main.js +11 -4
- package/dist/module/src/PM/node.js +1 -1
- package/dist/module/src/PM/web.js +3 -3
- package/dist/module/src/ReportServer.js +2 -123
- package/dist/module/src/ReportServer.test.ts/index.js +73 -0
- package/dist/module/src/ReportServerLib.js +128 -0
- package/dist/module/src/TestPage.js +29 -17
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/module/src/components/pure/TestPageView.js +29 -17
- package/dist/module/src/lib/abstractBase.js +2 -0
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/module/src/lib/basebuilder.js +8 -2
- package/dist/module/src/lib/pmProxy.js +54 -150
- package/dist/module/testeranto.config.js +35 -20
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +3 -3
- package/dist/prebuild/ReportServer.mjs +15 -9
- package/dist/prebuild/run.mjs +14 -4
- package/dist/types/src/PM/node.d.ts +1 -1
- package/dist/types/src/PM/web.d.ts +1 -1
- package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
- package/dist/types/src/ReportServerLib.d.ts +2 -0
- package/dist/types/src/Types.d.ts +0 -1
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
- package/dist/types/src/lib/abstractBase.d.ts +1 -1
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/PM/base.ts +5 -0
- package/src/PM/main.ts +12 -4
- package/src/PM/node.ts +1 -1
- package/src/PM/web.ts +3 -3
- package/src/ReportServer.test.ts/index.ts +194 -0
- package/src/ReportServer.ts +2 -132
- package/src/ReportServerLib.ts +144 -0
- package/src/TestPage.tsx +65 -5
- package/src/Types.ts +0 -1
- package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
- package/src/components/pure/TestPageView.tsx +65 -5
- package/src/lib/abstractBase.ts +4 -1
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
- package/src/lib/basebuilder.ts +7 -4
- package/src/lib/pmProxy.ts +78 -155
- package/testeranto/App.js +3 -3
- package/testeranto/bundles/node/allTests/metafile.json +38 -781
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +983 -24
- package/testeranto/bundles/node/core/metafile.json +486 -0
- package/testeranto/bundles/{pure/allTests/chunk-VMUSFSZM.mjs → node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs} +797 -412
- package/testeranto/bundles/node/staticSite/metafile.json +593 -0
- package/testeranto/bundles/node/staticSite/src/ReportServer.test.ts/index.mjs +1594 -0
- package/testeranto/bundles/pure/allTests/metafile.json +122 -550
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +740 -27
- package/testeranto/bundles/pure/core/metafile.json +626 -0
- package/testeranto/bundles/{node/allTests/chunk-E75CSRER.mjs → pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs} +777 -483
- package/testeranto/bundles/pure/staticSite/metafile.json +8 -0
- package/testeranto/bundles/web/allTests/metafile.json +777 -22
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +893 -45
- package/testeranto/bundles/web/core/metafile.json +780 -0
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +19 -0
- package/testeranto/bundles/web/{allTests/chunk-U7AW26HL.mjs → core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs} +506 -411
- package/testeranto/bundles/web/staticSite/metafile.json +8 -0
- package/testeranto/projects.json +2 -1
- package/testeranto/reports/allTests/config.json +0 -64
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +11 -13
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +10 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +10 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +25 -13
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +24 -12
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +49 -55
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +12 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +10 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +24 -12
- package/testeranto/reports/allTests/summary.json +6 -62
- package/testeranto/reports/core/config.json +24 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +32 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +69 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +74 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +74 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +61 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +69 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +74 -0
- package/testeranto/reports/core/summary.json +23 -0
- package/testeranto/reports/staticSite/config.json +24 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/lint_errors.txt +5 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/logs.txt +44 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/message.txt +2 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/prompt.txt +23 -0
- package/testeranto/reports/{allTests/src/lib/core.test/core.test → staticSite/src/ReportServer.test.ts/index}/node/type_errors.txt +21 -32
- package/testeranto/reports/staticSite/summary.json +9 -0
- package/testeranto/reportsnode_build_errors +8 -11
- package/testeranto.config.ts +37 -20
- package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
- package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +0 -19
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +0 -37524
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
- package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -13
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -68
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
- package/testeranto/reportspure_build_errors +0 -343
- package/testeranto/reportsweb_build_errors +0 -25
- /package/testeranto/reports/{allTests/src/components/pure/ProjectPageView.test/index/web → core/src/lib/baseBuilder.test/baseBuilder.test.node/node}/bdd_errors.txt +0 -0
- /package/testeranto/reports/{allTests/src/lib/BaseSuite.test/node.test/node → core/src/lib/baseBuilder.test/baseBuilder.test.web/web}/bdd_errors.txt +0 -0
|
@@ -1,43 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"errors": [],
|
|
3
3
|
"warnings": [
|
|
4
|
-
{
|
|
5
|
-
"id": "",
|
|
6
|
-
"location": null,
|
|
7
|
-
"notes": [],
|
|
8
|
-
"pluginName": "console-detector",
|
|
9
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"id": "",
|
|
13
|
-
"location": {
|
|
14
|
-
"column": 27,
|
|
15
|
-
"file": "src/Pure.test.ts",
|
|
16
|
-
"length": 31,
|
|
17
|
-
"line": 11,
|
|
18
|
-
"lineText": "import { MockPMBase } from \"./lib/pmProxy.test/mockPMBase\";",
|
|
19
|
-
"namespace": "",
|
|
20
|
-
"suggestion": ""
|
|
21
|
-
},
|
|
22
|
-
"notes": [],
|
|
23
|
-
"pluginName": "console-detector",
|
|
24
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": "",
|
|
28
|
-
"location": {
|
|
29
|
-
"column": 24,
|
|
30
|
-
"file": "src/Pure.ts",
|
|
31
|
-
"length": 14,
|
|
32
|
-
"line": 15,
|
|
33
|
-
"lineText": "import { PM_Pure } from \"./PM/pure.js\";",
|
|
34
|
-
"namespace": "",
|
|
35
|
-
"suggestion": ""
|
|
36
|
-
},
|
|
37
|
-
"notes": [],
|
|
38
|
-
"pluginName": "console-detector",
|
|
39
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
40
|
-
},
|
|
41
4
|
{
|
|
42
5
|
"id": "",
|
|
43
6
|
"location": {
|
|
@@ -72,70 +35,10 @@
|
|
|
72
35
|
"id": "",
|
|
73
36
|
"location": {
|
|
74
37
|
"column": 23,
|
|
75
|
-
"file": "src/lib/
|
|
76
|
-
"length":
|
|
77
|
-
"line": 2,
|
|
78
|
-
"lineText": "import Testeranto from \"../../Pure\";",
|
|
79
|
-
"namespace": "",
|
|
80
|
-
"suggestion": ""
|
|
81
|
-
},
|
|
82
|
-
"notes": [],
|
|
83
|
-
"pluginName": "console-detector",
|
|
84
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"id": "",
|
|
88
|
-
"location": {
|
|
89
|
-
"column": 23,
|
|
90
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
91
|
-
"length": 12,
|
|
38
|
+
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
39
|
+
"length": 11,
|
|
92
40
|
"line": 2,
|
|
93
|
-
"lineText": "import Testeranto from \"../../
|
|
94
|
-
"namespace": "",
|
|
95
|
-
"suggestion": ""
|
|
96
|
-
},
|
|
97
|
-
"notes": [],
|
|
98
|
-
"pluginName": "console-detector",
|
|
99
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"id": "",
|
|
103
|
-
"location": {
|
|
104
|
-
"column": 26,
|
|
105
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
106
|
-
"length": 14,
|
|
107
|
-
"line": 4,
|
|
108
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
109
|
-
"namespace": "",
|
|
110
|
-
"suggestion": ""
|
|
111
|
-
},
|
|
112
|
-
"notes": [],
|
|
113
|
-
"pluginName": "console-detector",
|
|
114
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"id": "",
|
|
118
|
-
"location": {
|
|
119
|
-
"column": 26,
|
|
120
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
121
|
-
"length": 14,
|
|
122
|
-
"line": 4,
|
|
123
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
124
|
-
"namespace": "",
|
|
125
|
-
"suggestion": ""
|
|
126
|
-
},
|
|
127
|
-
"notes": [],
|
|
128
|
-
"pluginName": "console-detector",
|
|
129
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"id": "",
|
|
133
|
-
"location": {
|
|
134
|
-
"column": 26,
|
|
135
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
136
|
-
"length": 14,
|
|
137
|
-
"line": 4,
|
|
138
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
41
|
+
"lineText": "import Testeranto from \"../../Web\";",
|
|
139
42
|
"namespace": "",
|
|
140
43
|
"suggestion": ""
|
|
141
44
|
},
|
|
@@ -146,11 +49,11 @@
|
|
|
146
49
|
{
|
|
147
50
|
"id": "",
|
|
148
51
|
"location": {
|
|
149
|
-
"column":
|
|
150
|
-
"file": "src/lib/
|
|
151
|
-
"length":
|
|
152
|
-
"line":
|
|
153
|
-
"lineText": "import {
|
|
52
|
+
"column": 31,
|
|
53
|
+
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
54
|
+
"length": 35,
|
|
55
|
+
"line": 5,
|
|
56
|
+
"lineText": "import { implementation } from \"./baseBuilder.test.implementation\";",
|
|
154
57
|
"namespace": "",
|
|
155
58
|
"suggestion": ""
|
|
156
59
|
},
|
|
@@ -161,41 +64,11 @@
|
|
|
161
64
|
{
|
|
162
65
|
"id": "",
|
|
163
66
|
"location": {
|
|
164
|
-
"column":
|
|
165
|
-
"file": "src/lib/
|
|
166
|
-
"length":
|
|
67
|
+
"column": 28,
|
|
68
|
+
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
69
|
+
"length": 28,
|
|
167
70
|
"line": 6,
|
|
168
|
-
"lineText": "import {
|
|
169
|
-
"namespace": "",
|
|
170
|
-
"suggestion": ""
|
|
171
|
-
},
|
|
172
|
-
"notes": [],
|
|
173
|
-
"pluginName": "console-detector",
|
|
174
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"id": "",
|
|
178
|
-
"location": {
|
|
179
|
-
"column": 26,
|
|
180
|
-
"file": "src/lib/BaseSuite.test/test.ts",
|
|
181
|
-
"length": 8,
|
|
182
|
-
"line": 14,
|
|
183
|
-
"lineText": "import { MockSuite } from \"./mock\";",
|
|
184
|
-
"namespace": "",
|
|
185
|
-
"suggestion": ""
|
|
186
|
-
},
|
|
187
|
-
"notes": [],
|
|
188
|
-
"pluginName": "console-detector",
|
|
189
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"id": "",
|
|
193
|
-
"location": {
|
|
194
|
-
"column": 26,
|
|
195
|
-
"file": "src/lib/BaseSuite.test/test.ts",
|
|
196
|
-
"length": 8,
|
|
197
|
-
"line": 14,
|
|
198
|
-
"lineText": "import { MockSuite } from \"./mock\";",
|
|
71
|
+
"lineText": "import { testAdapter } from \"./baseBuilder.test.adapter\";",
|
|
199
72
|
"namespace": "",
|
|
200
73
|
"suggestion": ""
|
|
201
74
|
},
|
|
@@ -207,55 +80,25 @@
|
|
|
207
80
|
"id": "",
|
|
208
81
|
"location": {
|
|
209
82
|
"column": 46,
|
|
210
|
-
"file": "src/lib/
|
|
211
|
-
"length":
|
|
212
|
-
"line":
|
|
213
|
-
"lineText": "import {
|
|
83
|
+
"file": "src/lib/core.ts",
|
|
84
|
+
"length": 19,
|
|
85
|
+
"line": 20,
|
|
86
|
+
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
214
87
|
"namespace": "",
|
|
215
88
|
"suggestion": ""
|
|
216
89
|
},
|
|
217
90
|
"notes": [],
|
|
218
91
|
"pluginName": "console-detector",
|
|
219
|
-
"text": "call of \"console.
|
|
92
|
+
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
220
93
|
},
|
|
221
94
|
{
|
|
222
95
|
"id": "",
|
|
223
96
|
"location": {
|
|
224
97
|
"column": 46,
|
|
225
|
-
"file": "src/lib/
|
|
226
|
-
"length":
|
|
227
|
-
"line":
|
|
228
|
-
"lineText": "import {
|
|
229
|
-
"namespace": "",
|
|
230
|
-
"suggestion": ""
|
|
231
|
-
},
|
|
232
|
-
"notes": [],
|
|
233
|
-
"pluginName": "console-detector",
|
|
234
|
-
"text": "call of \"console.warn\" was detected, which is not supported in the pure runtime."
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"id": "",
|
|
238
|
-
"location": {
|
|
239
|
-
"column": 23,
|
|
240
|
-
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
241
|
-
"length": 11,
|
|
242
|
-
"line": 2,
|
|
243
|
-
"lineText": "import Testeranto from \"../../Web\";",
|
|
244
|
-
"namespace": "",
|
|
245
|
-
"suggestion": ""
|
|
246
|
-
},
|
|
247
|
-
"notes": [],
|
|
248
|
-
"pluginName": "console-detector",
|
|
249
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"id": "",
|
|
253
|
-
"location": {
|
|
254
|
-
"column": 31,
|
|
255
|
-
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
256
|
-
"length": 35,
|
|
257
|
-
"line": 5,
|
|
258
|
-
"lineText": "import { implementation } from \"./baseBuilder.test.implementation\";",
|
|
98
|
+
"file": "src/lib/core.ts",
|
|
99
|
+
"length": 19,
|
|
100
|
+
"line": 20,
|
|
101
|
+
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
259
102
|
"namespace": "",
|
|
260
103
|
"suggestion": ""
|
|
261
104
|
},
|
|
@@ -266,11 +109,11 @@
|
|
|
266
109
|
{
|
|
267
110
|
"id": "",
|
|
268
111
|
"location": {
|
|
269
|
-
"column":
|
|
270
|
-
"file": "src/lib/
|
|
271
|
-
"length":
|
|
272
|
-
"line":
|
|
273
|
-
"lineText": "import {
|
|
112
|
+
"column": 46,
|
|
113
|
+
"file": "src/lib/core.ts",
|
|
114
|
+
"length": 19,
|
|
115
|
+
"line": 20,
|
|
116
|
+
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
274
117
|
"namespace": "",
|
|
275
118
|
"suggestion": ""
|
|
276
119
|
},
|
|
@@ -281,11 +124,11 @@
|
|
|
281
124
|
{
|
|
282
125
|
"id": "",
|
|
283
126
|
"location": {
|
|
284
|
-
"column":
|
|
127
|
+
"column": 26,
|
|
285
128
|
"file": "src/lib/core.ts",
|
|
286
|
-
"length":
|
|
287
|
-
"line":
|
|
288
|
-
"lineText": "import {
|
|
129
|
+
"length": 16,
|
|
130
|
+
"line": 23,
|
|
131
|
+
"lineText": "import { BaseSuite } from \"./BaseSuite.js\";",
|
|
289
132
|
"namespace": "",
|
|
290
133
|
"suggestion": ""
|
|
291
134
|
},
|
|
@@ -296,11 +139,11 @@
|
|
|
296
139
|
{
|
|
297
140
|
"id": "",
|
|
298
141
|
"location": {
|
|
299
|
-
"column":
|
|
142
|
+
"column": 26,
|
|
300
143
|
"file": "src/lib/core.ts",
|
|
301
|
-
"length":
|
|
302
|
-
"line":
|
|
303
|
-
"lineText": "import {
|
|
144
|
+
"length": 16,
|
|
145
|
+
"line": 23,
|
|
146
|
+
"lineText": "import { BaseSuite } from \"./BaseSuite.js\";",
|
|
304
147
|
"namespace": "",
|
|
305
148
|
"suggestion": ""
|
|
306
149
|
},
|
|
@@ -311,11 +154,11 @@
|
|
|
311
154
|
{
|
|
312
155
|
"id": "",
|
|
313
156
|
"location": {
|
|
314
|
-
"column":
|
|
157
|
+
"column": 26,
|
|
315
158
|
"file": "src/lib/core.ts",
|
|
316
|
-
"length":
|
|
317
|
-
"line":
|
|
318
|
-
"lineText": "import {
|
|
159
|
+
"length": 16,
|
|
160
|
+
"line": 23,
|
|
161
|
+
"lineText": "import { BaseSuite } from \"./BaseSuite.js\";",
|
|
319
162
|
"namespace": "",
|
|
320
163
|
"suggestion": ""
|
|
321
164
|
},
|
|
@@ -326,6 +169,58 @@
|
|
|
326
169
|
],
|
|
327
170
|
"metafile": {
|
|
328
171
|
"inputs": {
|
|
172
|
+
"src/PM/index.ts": {
|
|
173
|
+
"bytes": 1837,
|
|
174
|
+
"imports": [
|
|
175
|
+
{
|
|
176
|
+
"path": "puppeteer-core",
|
|
177
|
+
"kind": "import-statement",
|
|
178
|
+
"external": true
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"path": "puppeteer-core/lib/esm/puppeteer",
|
|
182
|
+
"kind": "import-statement",
|
|
183
|
+
"external": true
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"path": "../lib",
|
|
187
|
+
"kind": "import-statement",
|
|
188
|
+
"external": true
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"format": "esm"
|
|
192
|
+
},
|
|
193
|
+
"src/PM/web.ts": {
|
|
194
|
+
"bytes": 4178,
|
|
195
|
+
"imports": [
|
|
196
|
+
{
|
|
197
|
+
"path": "stream",
|
|
198
|
+
"kind": "import-statement",
|
|
199
|
+
"external": true
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"path": "puppeteer-core",
|
|
203
|
+
"kind": "import-statement",
|
|
204
|
+
"external": true
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"path": "puppeteer-core",
|
|
208
|
+
"kind": "import-statement",
|
|
209
|
+
"external": true
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"path": "../lib",
|
|
213
|
+
"kind": "import-statement",
|
|
214
|
+
"external": true
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"path": "src/PM/index.ts",
|
|
218
|
+
"kind": "import-statement",
|
|
219
|
+
"original": "."
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"format": "esm"
|
|
223
|
+
},
|
|
329
224
|
"src/lib/index.ts": {
|
|
330
225
|
"bytes": 3568,
|
|
331
226
|
"imports": [
|
|
@@ -368,7 +263,7 @@
|
|
|
368
263
|
"format": "esm"
|
|
369
264
|
},
|
|
370
265
|
"src/lib/pmProxy.ts": {
|
|
371
|
-
"bytes":
|
|
266
|
+
"bytes": 4933,
|
|
372
267
|
"imports": [
|
|
373
268
|
{
|
|
374
269
|
"path": "./types",
|
|
@@ -379,7 +274,7 @@
|
|
|
379
274
|
"format": "esm"
|
|
380
275
|
},
|
|
381
276
|
"src/lib/abstractBase.ts": {
|
|
382
|
-
"bytes":
|
|
277
|
+
"bytes": 7520,
|
|
383
278
|
"imports": [
|
|
384
279
|
{
|
|
385
280
|
"path": ".",
|
|
@@ -400,7 +295,7 @@
|
|
|
400
295
|
"format": "esm"
|
|
401
296
|
},
|
|
402
297
|
"src/lib/basebuilder.ts": {
|
|
403
|
-
"bytes":
|
|
298
|
+
"bytes": 4916,
|
|
404
299
|
"imports": [
|
|
405
300
|
{
|
|
406
301
|
"path": "stream",
|
|
@@ -518,235 +413,6 @@
|
|
|
518
413
|
],
|
|
519
414
|
"format": "esm"
|
|
520
415
|
},
|
|
521
|
-
"src/PM/index.ts": {
|
|
522
|
-
"bytes": 1837,
|
|
523
|
-
"imports": [
|
|
524
|
-
{
|
|
525
|
-
"path": "puppeteer-core",
|
|
526
|
-
"kind": "import-statement",
|
|
527
|
-
"external": true
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"path": "puppeteer-core/lib/esm/puppeteer",
|
|
531
|
-
"kind": "import-statement",
|
|
532
|
-
"external": true
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"path": "../lib",
|
|
536
|
-
"kind": "import-statement",
|
|
537
|
-
"external": true
|
|
538
|
-
}
|
|
539
|
-
],
|
|
540
|
-
"format": "esm"
|
|
541
|
-
},
|
|
542
|
-
"src/PM/pure.ts": {
|
|
543
|
-
"bytes": 5767,
|
|
544
|
-
"imports": [
|
|
545
|
-
{
|
|
546
|
-
"path": "puppeteer-core",
|
|
547
|
-
"kind": "import-statement",
|
|
548
|
-
"external": true
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"path": "puppeteer-core/lib/esm/puppeteer",
|
|
552
|
-
"kind": "import-statement",
|
|
553
|
-
"external": true
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"path": "../lib",
|
|
557
|
-
"kind": "import-statement",
|
|
558
|
-
"external": true
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"path": "src/PM/index.ts",
|
|
562
|
-
"kind": "import-statement",
|
|
563
|
-
"original": "."
|
|
564
|
-
}
|
|
565
|
-
],
|
|
566
|
-
"format": "esm"
|
|
567
|
-
},
|
|
568
|
-
"src/Pure.ts": {
|
|
569
|
-
"bytes": 2643,
|
|
570
|
-
"imports": [
|
|
571
|
-
{
|
|
572
|
-
"path": "./CoreTypes.js",
|
|
573
|
-
"kind": "import-statement",
|
|
574
|
-
"external": true
|
|
575
|
-
},
|
|
576
|
-
{
|
|
577
|
-
"path": "src/lib/core.ts",
|
|
578
|
-
"kind": "import-statement",
|
|
579
|
-
"original": "./lib/core.js"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"path": "src/lib/index.ts",
|
|
583
|
-
"kind": "import-statement",
|
|
584
|
-
"original": "./lib/index.js"
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"path": "src/PM/pure.ts",
|
|
588
|
-
"kind": "import-statement",
|
|
589
|
-
"original": "./PM/pure.js"
|
|
590
|
-
}
|
|
591
|
-
],
|
|
592
|
-
"format": "esm"
|
|
593
|
-
},
|
|
594
|
-
"src/lib/BaseSuite.test/mock.ts": {
|
|
595
|
-
"bytes": 3599,
|
|
596
|
-
"imports": [
|
|
597
|
-
{
|
|
598
|
-
"path": "src/lib/abstractBase.ts",
|
|
599
|
-
"kind": "import-statement",
|
|
600
|
-
"original": "../abstractBase"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"path": "src/lib/BaseSuite.ts",
|
|
604
|
-
"kind": "import-statement",
|
|
605
|
-
"original": "../BaseSuite"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
"path": "../types",
|
|
609
|
-
"kind": "import-statement",
|
|
610
|
-
"external": true
|
|
611
|
-
},
|
|
612
|
-
{
|
|
613
|
-
"path": "./test",
|
|
614
|
-
"kind": "import-statement",
|
|
615
|
-
"external": true
|
|
616
|
-
}
|
|
617
|
-
],
|
|
618
|
-
"format": "esm"
|
|
619
|
-
},
|
|
620
|
-
"src/lib/BaseSuite.test/test.ts": {
|
|
621
|
-
"bytes": 12580,
|
|
622
|
-
"imports": [
|
|
623
|
-
{
|
|
624
|
-
"path": "..",
|
|
625
|
-
"kind": "import-statement",
|
|
626
|
-
"external": true
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"path": "../../CoreTypes",
|
|
630
|
-
"kind": "import-statement",
|
|
631
|
-
"external": true
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"path": "../BaseSuite",
|
|
635
|
-
"kind": "import-statement",
|
|
636
|
-
"external": true
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
"path": "../types",
|
|
640
|
-
"kind": "import-statement",
|
|
641
|
-
"external": true
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"path": "src/lib/BaseSuite.test/mock.ts",
|
|
645
|
-
"kind": "import-statement",
|
|
646
|
-
"original": "./mock"
|
|
647
|
-
}
|
|
648
|
-
],
|
|
649
|
-
"format": "esm"
|
|
650
|
-
},
|
|
651
|
-
"src/lib/BaseSuite.test/pure.test.ts": {
|
|
652
|
-
"bytes": 320,
|
|
653
|
-
"imports": [
|
|
654
|
-
{
|
|
655
|
-
"path": "src/Pure.ts",
|
|
656
|
-
"kind": "import-statement",
|
|
657
|
-
"original": "../../Pure"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"path": "src/lib/BaseSuite.ts",
|
|
661
|
-
"kind": "import-statement",
|
|
662
|
-
"original": "../BaseSuite"
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
"path": "src/lib/BaseSuite.test/test.ts",
|
|
666
|
-
"kind": "import-statement",
|
|
667
|
-
"original": "./test"
|
|
668
|
-
}
|
|
669
|
-
],
|
|
670
|
-
"format": "esm"
|
|
671
|
-
},
|
|
672
|
-
"src/lib/pmProxy.test/mockPMBase.ts": {
|
|
673
|
-
"bytes": 4024,
|
|
674
|
-
"imports": [
|
|
675
|
-
{
|
|
676
|
-
"path": "puppeteer-core",
|
|
677
|
-
"kind": "import-statement",
|
|
678
|
-
"external": true
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"path": "../index",
|
|
682
|
-
"kind": "import-statement",
|
|
683
|
-
"external": true
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
"path": "../../PM/base",
|
|
687
|
-
"kind": "import-statement",
|
|
688
|
-
"external": true
|
|
689
|
-
}
|
|
690
|
-
],
|
|
691
|
-
"format": "esm"
|
|
692
|
-
},
|
|
693
|
-
"src/Pure.test.ts": {
|
|
694
|
-
"bytes": 11272,
|
|
695
|
-
"imports": [
|
|
696
|
-
{
|
|
697
|
-
"path": "./CoreTypes",
|
|
698
|
-
"kind": "import-statement",
|
|
699
|
-
"external": true
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"path": "src/Pure.ts",
|
|
703
|
-
"kind": "import-statement",
|
|
704
|
-
"original": "./Pure"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"path": "src/lib/pmProxy.test/mockPMBase.ts",
|
|
708
|
-
"kind": "import-statement",
|
|
709
|
-
"original": "./lib/pmProxy.test/mockPMBase"
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
"path": "./lib/types",
|
|
713
|
-
"kind": "import-statement",
|
|
714
|
-
"external": true
|
|
715
|
-
}
|
|
716
|
-
],
|
|
717
|
-
"format": "esm"
|
|
718
|
-
},
|
|
719
|
-
"src/PM/web.ts": {
|
|
720
|
-
"bytes": 4168,
|
|
721
|
-
"imports": [
|
|
722
|
-
{
|
|
723
|
-
"path": "stream",
|
|
724
|
-
"kind": "import-statement",
|
|
725
|
-
"external": true
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
"path": "puppeteer-core",
|
|
729
|
-
"kind": "import-statement",
|
|
730
|
-
"external": true
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"path": "puppeteer-core",
|
|
734
|
-
"kind": "import-statement",
|
|
735
|
-
"external": true
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"path": "../lib",
|
|
739
|
-
"kind": "import-statement",
|
|
740
|
-
"external": true
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"path": "src/PM/index.ts",
|
|
744
|
-
"kind": "import-statement",
|
|
745
|
-
"original": "."
|
|
746
|
-
}
|
|
747
|
-
],
|
|
748
|
-
"format": "esm"
|
|
749
|
-
},
|
|
750
416
|
"src/Web.ts": {
|
|
751
417
|
"bytes": 2958,
|
|
752
418
|
"imports": [
|
|
@@ -774,7 +440,7 @@
|
|
|
774
440
|
"format": "esm"
|
|
775
441
|
},
|
|
776
442
|
"src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
|
|
777
|
-
"bytes":
|
|
443
|
+
"bytes": 985,
|
|
778
444
|
"imports": [
|
|
779
445
|
{
|
|
780
446
|
"path": "../../CoreTypes",
|
|
@@ -816,7 +482,7 @@
|
|
|
816
482
|
"format": "esm"
|
|
817
483
|
},
|
|
818
484
|
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
819
|
-
"bytes":
|
|
485
|
+
"bytes": 3998,
|
|
820
486
|
"imports": [
|
|
821
487
|
{
|
|
822
488
|
"path": "../../CoreTypes",
|
|
@@ -900,105 +566,51 @@
|
|
|
900
566
|
}
|
|
901
567
|
},
|
|
902
568
|
"outputs": {
|
|
903
|
-
"testeranto/bundles/pure/allTests/src/lib/
|
|
904
|
-
"imports": [
|
|
905
|
-
{
|
|
906
|
-
"path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
|
|
907
|
-
"kind": "import-statement"
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
911
|
-
"kind": "import-statement"
|
|
912
|
-
}
|
|
913
|
-
],
|
|
569
|
+
"testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs": {
|
|
570
|
+
"imports": [],
|
|
914
571
|
"exports": [
|
|
915
572
|
"default"
|
|
916
573
|
],
|
|
917
|
-
"entryPoint": "src/lib/
|
|
574
|
+
"entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
918
575
|
"inputs": {
|
|
919
|
-
"src/
|
|
920
|
-
"bytesInOutput":
|
|
576
|
+
"src/PM/index.ts": {
|
|
577
|
+
"bytesInOutput": 20
|
|
921
578
|
},
|
|
922
|
-
"src/
|
|
923
|
-
"bytesInOutput":
|
|
579
|
+
"src/PM/web.ts": {
|
|
580
|
+
"bytesInOutput": 2959
|
|
924
581
|
},
|
|
925
|
-
"src/lib/
|
|
926
|
-
"bytesInOutput":
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
"bytes": 11857
|
|
930
|
-
},
|
|
931
|
-
"testeranto/bundles/pure/allTests/src/Pure.test.mjs": {
|
|
932
|
-
"imports": [
|
|
933
|
-
{
|
|
934
|
-
"path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
|
|
935
|
-
"kind": "import-statement"
|
|
582
|
+
"src/lib/index.ts": {
|
|
583
|
+
"bytesInOutput": 656
|
|
936
584
|
},
|
|
937
|
-
{
|
|
938
|
-
"
|
|
939
|
-
"kind": "import-statement"
|
|
940
|
-
}
|
|
941
|
-
],
|
|
942
|
-
"exports": [
|
|
943
|
-
"default"
|
|
944
|
-
],
|
|
945
|
-
"entryPoint": "src/Pure.test.ts",
|
|
946
|
-
"inputs": {
|
|
947
|
-
"src/lib/pmProxy.test/mockPMBase.ts": {
|
|
948
|
-
"bytesInOutput": 2884
|
|
585
|
+
"src/lib/pmProxy.ts": {
|
|
586
|
+
"bytesInOutput": 3762
|
|
949
587
|
},
|
|
950
|
-
"src/
|
|
951
|
-
"bytesInOutput":
|
|
952
|
-
}
|
|
953
|
-
},
|
|
954
|
-
"bytes": 12189
|
|
955
|
-
},
|
|
956
|
-
"testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs": {
|
|
957
|
-
"imports": [
|
|
958
|
-
{
|
|
959
|
-
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
960
|
-
"kind": "import-statement"
|
|
961
|
-
}
|
|
962
|
-
],
|
|
963
|
-
"exports": [
|
|
964
|
-
"Pure_default"
|
|
965
|
-
],
|
|
966
|
-
"inputs": {
|
|
967
|
-
"src/PM/pure.ts": {
|
|
968
|
-
"bytesInOutput": 3131
|
|
588
|
+
"src/lib/abstractBase.ts": {
|
|
589
|
+
"bytesInOutput": 4973
|
|
969
590
|
},
|
|
970
|
-
"src/
|
|
971
|
-
"bytesInOutput":
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
"
|
|
981
|
-
}
|
|
982
|
-
],
|
|
983
|
-
"exports": [
|
|
984
|
-
"default"
|
|
985
|
-
],
|
|
986
|
-
"entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
987
|
-
"inputs": {
|
|
988
|
-
"src/PM/web.ts": {
|
|
989
|
-
"bytesInOutput": 3059
|
|
591
|
+
"src/lib/basebuilder.ts": {
|
|
592
|
+
"bytesInOutput": 2381
|
|
593
|
+
},
|
|
594
|
+
"src/lib/classBuilder.ts": {
|
|
595
|
+
"bytesInOutput": 1850
|
|
596
|
+
},
|
|
597
|
+
"src/lib/BaseSuite.ts": {
|
|
598
|
+
"bytesInOutput": 2484
|
|
599
|
+
},
|
|
600
|
+
"src/lib/core.ts": {
|
|
601
|
+
"bytesInOutput": 1829
|
|
990
602
|
},
|
|
991
603
|
"src/Web.ts": {
|
|
992
604
|
"bytesInOutput": 795
|
|
993
605
|
},
|
|
994
606
|
"src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
|
|
995
|
-
"bytesInOutput":
|
|
607
|
+
"bytesInOutput": 832
|
|
996
608
|
},
|
|
997
609
|
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
998
610
|
"bytesInOutput": 906
|
|
999
611
|
},
|
|
1000
612
|
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
1001
|
-
"bytesInOutput":
|
|
613
|
+
"bytesInOutput": 3283
|
|
1002
614
|
},
|
|
1003
615
|
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
1004
616
|
"bytesInOutput": 653
|
|
@@ -1007,47 +619,7 @@
|
|
|
1007
619
|
"bytesInOutput": 130
|
|
1008
620
|
}
|
|
1009
621
|
},
|
|
1010
|
-
"bytes":
|
|
1011
|
-
},
|
|
1012
|
-
"testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs": {
|
|
1013
|
-
"imports": [],
|
|
1014
|
-
"exports": [
|
|
1015
|
-
"BaseBuilder",
|
|
1016
|
-
"BaseGiven",
|
|
1017
|
-
"BaseSuite",
|
|
1018
|
-
"BaseThen",
|
|
1019
|
-
"BaseWhen",
|
|
1020
|
-
"PM",
|
|
1021
|
-
"TesterantoCore",
|
|
1022
|
-
"defaultTestResourceRequirement"
|
|
1023
|
-
],
|
|
1024
|
-
"inputs": {
|
|
1025
|
-
"src/lib/pmProxy.ts": {
|
|
1026
|
-
"bytesInOutput": 5758
|
|
1027
|
-
},
|
|
1028
|
-
"src/lib/BaseSuite.ts": {
|
|
1029
|
-
"bytesInOutput": 2484
|
|
1030
|
-
},
|
|
1031
|
-
"src/lib/index.ts": {
|
|
1032
|
-
"bytesInOutput": 656
|
|
1033
|
-
},
|
|
1034
|
-
"src/lib/basebuilder.ts": {
|
|
1035
|
-
"bytesInOutput": 2341
|
|
1036
|
-
},
|
|
1037
|
-
"src/lib/abstractBase.ts": {
|
|
1038
|
-
"bytesInOutput": 4973
|
|
1039
|
-
},
|
|
1040
|
-
"src/lib/classBuilder.ts": {
|
|
1041
|
-
"bytesInOutput": 1850
|
|
1042
|
-
},
|
|
1043
|
-
"src/lib/core.ts": {
|
|
1044
|
-
"bytesInOutput": 1827
|
|
1045
|
-
},
|
|
1046
|
-
"src/PM/index.ts": {
|
|
1047
|
-
"bytesInOutput": 20
|
|
1048
|
-
}
|
|
1049
|
-
},
|
|
1050
|
-
"bytes": 20323
|
|
622
|
+
"bytes": 28172
|
|
1051
623
|
}
|
|
1052
624
|
}
|
|
1053
625
|
}
|