testeranto 0.167.0 → 0.172.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/NavBar.js +45 -0
- package/dist/common/src/PM/main.js +81 -59
- package/dist/common/src/Pure.js +16 -14
- package/dist/common/src/ReportServer.js +48 -5
- package/dist/common/src/Web.js +35 -20
- package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/common/src/components/TestStatusBadge.js +55 -0
- package/dist/common/src/components/pure/ProjectPageView.js +204 -0
- package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/common/src/lib/BaseSuite.js +3 -3
- package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/common/src/lib/abstractBase.js +41 -14
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/common/src/lib/pmProxy.js +185 -64
- package/dist/common/testeranto.config.js +6 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/App.js +3 -3
- package/dist/module/src/PM/main.js +81 -59
- package/dist/module/src/ProjectsPage.js +1 -110
- package/dist/module/src/Pure.js +16 -14
- package/dist/module/src/ReportServer.js +48 -5
- package/dist/module/src/TestPage.js +45 -16
- package/dist/module/src/Web.js +35 -20
- package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/module/src/components/pure/ProjectPageView.js +197 -0
- package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
- package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
- package/dist/module/src/components/pure/TestPageView.js +136 -0
- package/dist/module/src/components/stateful/ProjectPage.js +63 -0
- package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
- package/dist/module/src/components/stateful/TestPage.js +82 -0
- package/dist/module/src/lib/BaseSuite.js +3 -3
- package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/module/src/lib/abstractBase.js +41 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/module/src/lib/pmProxy.js +185 -64
- package/dist/module/testeranto.config.js +6 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +13 -9
- package/dist/prebuild/App.js +600 -551
- package/dist/prebuild/ReportServer.mjs +44 -4
- package/dist/prebuild/run.mjs +67 -39
- package/dist/types/src/NavBar.d.ts +19 -0
- package/dist/types/src/PM/index.d.ts +3 -1
- package/dist/types/src/PM/main.d.ts +0 -4
- package/dist/types/src/PM/node.d.ts +2 -2
- package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
- package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
- package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
- package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -0
- package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +12 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/src/App.tsx +5 -9
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +87 -82
- package/src/PM/node.ts +2 -2
- package/src/ProjectsPage.tsx +1 -164
- package/src/Pure.ts +16 -16
- package/src/ReportServer.ts +49 -6
- package/src/TestPage.tsx +78 -5
- package/src/Web.ts +35 -35
- package/src/components/SunriseAnimation.test/implementation.ts +0 -0
- package/src/components/SunriseAnimation.test/index.ts +0 -0
- package/src/components/SunriseAnimation.test/interface.ts +0 -0
- package/src/components/SunriseAnimation.test/specification.ts +0 -0
- package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
- package/src/components/pure/ProjectPageView.test/index.ts +8 -0
- package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
- package/src/components/pure/ProjectPageView.test/types.ts +55 -0
- package/src/components/pure/ProjectPageView.tsx +332 -0
- package/src/components/pure/ProjectsPageView.tsx +99 -0
- package/src/components/pure/TestPageView.tsx +278 -0
- package/src/components/stateful/ProjectPage.tsx +83 -0
- package/src/components/stateful/ProjectsPage.tsx +73 -0
- package/src/components/stateful/TestPage.tsx +107 -0
- package/src/lib/BaseSuite.test/test.ts +1 -1
- package/src/lib/BaseSuite.ts +9 -4
- package/src/lib/abstractBase.ts +45 -14
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
- package/src/lib/pmProxy.ts +184 -87
- package/testeranto/App.css +13 -9
- package/testeranto/App.js +600 -551
- package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
- package/testeranto/bundles/node/allTests/{chunk-IDCUSTSM.mjs → chunk-E75CSRER.mjs} +246 -115
- package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
- package/testeranto/bundles/node/allTests/metafile.json +37 -37
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
- 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 +2 -17
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +354 -252
- package/testeranto/bundles/pure/allTests/{chunk-5SBJWHSZ.mjs → chunk-KHDVEHF7.mjs} +2 -17
- package/testeranto/bundles/pure/allTests/{chunk-4ULDTZFU.mjs → chunk-VMUSFSZM.mjs} +246 -115
- package/testeranto/bundles/pure/allTests/metafile.json +72 -42
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +2 -29
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
- package/testeranto/bundles/web/allTests/{chunk-46E6YGGN.mjs → chunk-U7AW26HL.mjs} +292 -142
- package/testeranto/bundles/web/allTests/metafile.json +22 -943
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +26 -2
- package/testeranto/reports/allTests/config.json +8 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +22 -39
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +66 -55
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +16 -48
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +62 -33
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +37 -50
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +28 -43
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/summary.json +15 -8
- package/testeranto/reportsnode_build_errors +20 -0
- package/testeranto/reportspure_build_errors +343 -0
- package/testeranto/reportsweb_build_errors +25 -0
- package/testeranto.config.ts +7 -0
- package/tsc.log +100 -26
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/testeranto/bundles/node/allTests/chunk-FFBRDUBH.mjs +0 -677
- package/testeranto/bundles/node/allTests/chunk-H2IBV7SY.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-ZHOULXPN.mjs +0 -252
- package/testeranto/bundles/pure/allTests/chunk-CSMXYJ65.mjs +0 -200
- package/testeranto/bundles/pure/allTests/chunk-QK4IXLF6.mjs +0 -674
- package/testeranto/bundles/web/allTests/chunk-TU3MJSSI.mjs +0 -855
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
- package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
- /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
- /package/{testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/index.d.ts} +0 -0
package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json
CHANGED
|
@@ -8,13 +8,15 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "initializedProperly: undefined",
|
|
11
|
-
"error": false
|
|
11
|
+
"error": false,
|
|
12
|
+
"artifacts": []
|
|
12
13
|
}
|
|
13
14
|
],
|
|
14
15
|
"error": null,
|
|
15
16
|
"features": [
|
|
16
17
|
"ClassBuilder should initialize with default values"
|
|
17
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"artifacts": []
|
|
18
20
|
},
|
|
19
21
|
{
|
|
20
22
|
"key": "customInput",
|
|
@@ -23,13 +25,15 @@
|
|
|
23
25
|
"thens": [
|
|
24
26
|
{
|
|
25
27
|
"name": "initializedProperly: undefined",
|
|
26
|
-
"error": false
|
|
28
|
+
"error": false,
|
|
29
|
+
"artifacts": []
|
|
27
30
|
}
|
|
28
31
|
],
|
|
29
32
|
"error": null,
|
|
30
33
|
"features": {
|
|
31
34
|
"custom": "input"
|
|
32
|
-
}
|
|
35
|
+
},
|
|
36
|
+
"artifacts": []
|
|
33
37
|
},
|
|
34
38
|
{
|
|
35
39
|
"key": "resourceRequirements",
|
|
@@ -38,7 +42,8 @@
|
|
|
38
42
|
"thens": [
|
|
39
43
|
{
|
|
40
44
|
"name": "resourceRequirementsSet: undefined",
|
|
41
|
-
"error": false
|
|
45
|
+
"error": false,
|
|
46
|
+
"artifacts": []
|
|
42
47
|
}
|
|
43
48
|
],
|
|
44
49
|
"error": null,
|
|
@@ -47,7 +52,8 @@
|
|
|
47
52
|
3000,
|
|
48
53
|
3001
|
|
49
54
|
]
|
|
50
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"artifacts": []
|
|
51
57
|
},
|
|
52
58
|
{
|
|
53
59
|
"key": "specGeneration",
|
|
@@ -56,13 +62,15 @@
|
|
|
56
62
|
"thens": [
|
|
57
63
|
{
|
|
58
64
|
"name": "specsGenerated: undefined",
|
|
59
|
-
"error": false
|
|
65
|
+
"error": false,
|
|
66
|
+
"artifacts": []
|
|
60
67
|
}
|
|
61
68
|
],
|
|
62
69
|
"error": null,
|
|
63
70
|
"features": [
|
|
64
71
|
"Should generate specs from test specification"
|
|
65
|
-
]
|
|
72
|
+
],
|
|
73
|
+
"artifacts": []
|
|
66
74
|
},
|
|
67
75
|
{
|
|
68
76
|
"key": "jobCreation",
|
|
@@ -71,32 +79,37 @@
|
|
|
71
79
|
"thens": [
|
|
72
80
|
{
|
|
73
81
|
"name": "jobsCreated: undefined",
|
|
74
|
-
"error": false
|
|
82
|
+
"error": false,
|
|
83
|
+
"artifacts": []
|
|
75
84
|
}
|
|
76
85
|
],
|
|
77
86
|
"error": null,
|
|
78
87
|
"features": [
|
|
79
88
|
"Should create test jobs from specs"
|
|
80
|
-
]
|
|
89
|
+
],
|
|
90
|
+
"artifacts": []
|
|
81
91
|
},
|
|
82
92
|
{
|
|
83
93
|
"key": "artifactTracking",
|
|
84
94
|
"name": "Default",
|
|
85
95
|
"whens": [
|
|
86
96
|
{
|
|
87
|
-
"name": "addArtifact: [object Promise]"
|
|
97
|
+
"name": "addArtifact: [object Promise]",
|
|
98
|
+
"artifacts": []
|
|
88
99
|
}
|
|
89
100
|
],
|
|
90
101
|
"thens": [
|
|
91
102
|
{
|
|
92
103
|
"name": "artifactsTracked: undefined",
|
|
93
|
-
"error": false
|
|
104
|
+
"error": false,
|
|
105
|
+
"artifacts": []
|
|
94
106
|
}
|
|
95
107
|
],
|
|
96
108
|
"error": null,
|
|
97
109
|
"features": [
|
|
98
110
|
"Should track artifacts"
|
|
99
|
-
]
|
|
111
|
+
],
|
|
112
|
+
"artifacts": []
|
|
100
113
|
},
|
|
101
114
|
{
|
|
102
115
|
"key": "overridesConfiguration",
|
|
@@ -105,25 +118,30 @@
|
|
|
105
118
|
"thens": [
|
|
106
119
|
{
|
|
107
120
|
"name": "suitesOverridesConfigured: undefined",
|
|
108
|
-
"error": false
|
|
121
|
+
"error": false,
|
|
122
|
+
"artifacts": []
|
|
109
123
|
},
|
|
110
124
|
{
|
|
111
125
|
"name": "givensOverridesConfigured: undefined",
|
|
112
|
-
"error": false
|
|
126
|
+
"error": false,
|
|
127
|
+
"artifacts": []
|
|
113
128
|
},
|
|
114
129
|
{
|
|
115
130
|
"name": "whensOverridesConfigured: undefined",
|
|
116
|
-
"error": false
|
|
131
|
+
"error": false,
|
|
132
|
+
"artifacts": []
|
|
117
133
|
},
|
|
118
134
|
{
|
|
119
135
|
"name": "thensOverridesConfigured: undefined",
|
|
120
|
-
"error": false
|
|
136
|
+
"error": false,
|
|
137
|
+
"artifacts": []
|
|
121
138
|
}
|
|
122
139
|
],
|
|
123
140
|
"error": null,
|
|
124
141
|
"features": [
|
|
125
142
|
"Should properly configure all overrides"
|
|
126
|
-
]
|
|
143
|
+
],
|
|
144
|
+
"artifacts": []
|
|
127
145
|
}
|
|
128
146
|
],
|
|
129
147
|
"fails": 0,
|
package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -126,6 +127,12 @@
|
|
|
126
127
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
127
128
|
/Users/adam/Code/testeranto/src/Node.ts (34,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
128
129
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
130
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
131
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
132
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
133
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
134
|
+
Types of property 'path' are incompatible.
|
|
135
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
129
136
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
130
137
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
131
138
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
|
|
2
2
|
stdout > [DEBUG] BaseSuite constructor - name: Testeranto Core Functionality index: 0
|
|
3
3
|
[DEBUG] BaseSuite initialized: Testeranto Core Functionality 0
|
|
4
|
-
[DEBUG] BaseSuite givens:
|
|
4
|
+
[DEBUG] BaseSuite givens: features,artifacts
|
|
5
5
|
[DEBUG] BaseSuite constructor - name: Testeranto Advanced Features index: 1
|
|
6
6
|
[DEBUG] BaseSuite initialized: Testeranto Advanced Features 1
|
|
7
|
-
[DEBUG] BaseSuite givens:
|
|
7
|
+
[DEBUG] BaseSuite givens: features,artifacts
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -49,9 +50,14 @@
|
|
|
49
50
|
Types of property 'assertThis' are incompatible.
|
|
50
51
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
51
52
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
53
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
54
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
55
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
56
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
57
|
+
Types of property 'path' are incompatible.
|
|
58
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
52
59
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
53
60
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
54
61
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
55
62
|
/Users/adam/Code/testeranto/src/Pure.ts (32,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
56
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
57
|
-
/Users/adam/Code/testeranto/src/Pure.ts (56,58): Property 'testImplementation' does not exist on type 'PureTesteranto<I, O, M>'.
|
|
63
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
@@ -1,46 +1,31 @@
|
|
|
1
1
|
stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
|
|
2
2
|
stdout > [DEBUG] BaseSuite constructor - name: PM Proxy Functionality index: 0
|
|
3
|
-
[DEBUG] BaseSuite initialized: PM Proxy Functionality 0
|
|
4
|
-
[DEBUG] BaseSuite givens:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
]
|
|
13
|
-
[DEBUG] BaseSuite
|
|
14
|
-
|
|
15
|
-
[
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
]
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
[
|
|
27
|
-
|
|
28
|
-
stdout > [
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
'butThenProxy should rewrite screencast paths',
|
|
32
|
-
'butThenProxy should rewrite customScreenShot paths',
|
|
33
|
-
'butThenProxy should handle empty paths',
|
|
34
|
-
'butThenProxy should handle nested paths',
|
|
35
|
-
'butThenProxy should handle special characters in paths'
|
|
36
|
-
]
|
|
37
|
-
[DEBUG] Features extracted: [
|
|
38
|
-
'butThenProxy should rewrite writeFileSync paths',
|
|
39
|
-
'butThenProxy should rewrite createWriteStream paths',
|
|
40
|
-
'butThenProxy should rewrite screencast paths',
|
|
41
|
-
'butThenProxy should rewrite customScreenShot paths',
|
|
42
|
-
'butThenProxy should handle empty paths',
|
|
43
|
-
'butThenProxy should handle nested paths',
|
|
44
|
-
'butThenProxy should handle special characters in paths'
|
|
45
|
-
]
|
|
3
|
+
stdout > [DEBUG] BaseSuite initialized: PM Proxy Functionality 0
|
|
4
|
+
stdout > [DEBUG] BaseSuite givens: writeFileProxyTest,createWriteStreamProxyTest,screencastProxyTest,customScreenShotProxyTest,emptyPathTest,nestedPathTest,specialCharsTest
|
|
5
|
+
stdout > [DEBUG] BaseSuite constructor - name: Proxy Type Coverage index: 0
|
|
6
|
+
stdout > [DEBUG] BaseSuite initialized: Proxy Type Coverage 0
|
|
7
|
+
stdout > [DEBUG] BaseSuite givens: butThenProxyTest,andWhenProxyTest,beforeEachProxyTest,afterEachProxyTest
|
|
8
|
+
stdout > [DEBUG] BaseSuite constructor - name: Content Preservation index: 0
|
|
9
|
+
stdout > [DEBUG] BaseSuite initialized: Content Preservation 0
|
|
10
|
+
stdout > [DEBUG] BaseSuite givens: contentPreservationTest,objectContentTest
|
|
11
|
+
stdout > [DEBUG] BaseSuite constructor - name: Error Cases index: 0
|
|
12
|
+
stdout > [DEBUG] BaseSuite initialized: Error Cases 0
|
|
13
|
+
stdout > [DEBUG] BaseSuite givens: invalidPathTest,undefinedInputTest
|
|
14
|
+
stdout > receiveTestResourceConfig {"name":"src/lib/pmProxy.test/index.ts","ports":[],"fs":"testeranto/reports/allTests/src/lib/pmProxy.test/index/node","browserWSEndpoint":"ws://127.0.0.1:3234/devtools/browser/542e424f-5d11-4332-9796-c106911994da"}
|
|
15
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
16
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
|
|
17
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
18
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: createWriteStream
|
|
19
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
20
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: screencast
|
|
21
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
22
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: customScreenShot
|
|
23
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
24
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
|
|
25
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
26
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
|
|
27
|
+
stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
|
|
28
|
+
stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
|
|
29
|
+
stdout > [DEBUG] Features extracted: butThenProxy should rewrite writeFileSync paths,butThenProxy should rewrite createWriteStream paths,butThenProxy should rewrite screencast paths,butThenProxy should rewrite customScreenShot paths,butThenProxy should handle empty paths,butThenProxy should handle nested paths,butThenProxy should handle special characters in paths
|
|
30
|
+
stdout > [DEBUG] Features extracted: butThenProxy should rewrite writeFileSync paths,butThenProxy should rewrite createWriteStream paths,butThenProxy should rewrite screencast paths,butThenProxy should rewrite customScreenShot paths,butThenProxy should handle empty paths,butThenProxy should handle nested paths,butThenProxy should handle special characters in paths
|
|
46
31
|
stderr > goodbye node with failures 0
|
|
@@ -8,13 +8,15 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
11
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
11
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
12
|
+
"artifacts": []
|
|
12
13
|
}
|
|
13
14
|
],
|
|
14
15
|
"error": null,
|
|
15
16
|
"features": [
|
|
16
17
|
"butThenProxy should rewrite writeFileSync paths"
|
|
17
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"artifacts": []
|
|
18
20
|
},
|
|
19
21
|
{
|
|
20
22
|
"key": "createWriteStreamProxyTest",
|
|
@@ -23,13 +25,15 @@
|
|
|
23
25
|
"thens": [
|
|
24
26
|
{
|
|
25
27
|
"name": "theButTheProxyReturns: createWriteStream",
|
|
26
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
28
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
29
|
+
"artifacts": []
|
|
27
30
|
}
|
|
28
31
|
],
|
|
29
32
|
"error": null,
|
|
30
33
|
"features": [
|
|
31
34
|
"butThenProxy should rewrite createWriteStream paths"
|
|
32
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"artifacts": []
|
|
33
37
|
},
|
|
34
38
|
{
|
|
35
39
|
"key": "screencastProxyTest",
|
|
@@ -38,13 +42,15 @@
|
|
|
38
42
|
"thens": [
|
|
39
43
|
{
|
|
40
44
|
"name": "theButTheProxyReturns: screencast",
|
|
41
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
45
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
46
|
+
"artifacts": []
|
|
42
47
|
}
|
|
43
48
|
],
|
|
44
49
|
"error": null,
|
|
45
50
|
"features": [
|
|
46
51
|
"butThenProxy should rewrite screencast paths"
|
|
47
|
-
]
|
|
52
|
+
],
|
|
53
|
+
"artifacts": []
|
|
48
54
|
},
|
|
49
55
|
{
|
|
50
56
|
"key": "customScreenShotProxyTest",
|
|
@@ -53,13 +59,15 @@
|
|
|
53
59
|
"thens": [
|
|
54
60
|
{
|
|
55
61
|
"name": "theButTheProxyReturns: customScreenShot",
|
|
56
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
62
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
63
|
+
"artifacts": []
|
|
57
64
|
}
|
|
58
65
|
],
|
|
59
66
|
"error": null,
|
|
60
67
|
"features": [
|
|
61
68
|
"butThenProxy should rewrite customScreenShot paths"
|
|
62
|
-
]
|
|
69
|
+
],
|
|
70
|
+
"artifacts": []
|
|
63
71
|
},
|
|
64
72
|
{
|
|
65
73
|
"key": "emptyPathTest",
|
|
@@ -68,13 +76,15 @@
|
|
|
68
76
|
"thens": [
|
|
69
77
|
{
|
|
70
78
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
71
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
79
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
80
|
+
"artifacts": []
|
|
72
81
|
}
|
|
73
82
|
],
|
|
74
83
|
"error": null,
|
|
75
84
|
"features": [
|
|
76
85
|
"butThenProxy should handle empty paths"
|
|
77
|
-
]
|
|
86
|
+
],
|
|
87
|
+
"artifacts": []
|
|
78
88
|
},
|
|
79
89
|
{
|
|
80
90
|
"key": "nestedPathTest",
|
|
@@ -83,13 +93,15 @@
|
|
|
83
93
|
"thens": [
|
|
84
94
|
{
|
|
85
95
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
86
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
96
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
97
|
+
"artifacts": []
|
|
87
98
|
}
|
|
88
99
|
],
|
|
89
100
|
"error": null,
|
|
90
101
|
"features": [
|
|
91
102
|
"butThenProxy should handle nested paths"
|
|
92
|
-
]
|
|
103
|
+
],
|
|
104
|
+
"artifacts": []
|
|
93
105
|
},
|
|
94
106
|
{
|
|
95
107
|
"key": "specialCharsTest",
|
|
@@ -98,13 +110,15 @@
|
|
|
98
110
|
"thens": [
|
|
99
111
|
{
|
|
100
112
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
101
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
113
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
114
|
+
"artifacts": []
|
|
102
115
|
}
|
|
103
116
|
],
|
|
104
117
|
"error": null,
|
|
105
118
|
"features": [
|
|
106
119
|
"butThenProxy should handle special characters in paths"
|
|
107
|
-
]
|
|
120
|
+
],
|
|
121
|
+
"artifacts": []
|
|
108
122
|
}
|
|
109
123
|
],
|
|
110
124
|
"fails": 0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -64,6 +65,12 @@
|
|
|
64
65
|
/Users/adam/Code/testeranto/src/lib/pmProxy.test/types.ts (21,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
65
66
|
/Users/adam/Code/testeranto/src/Node.ts (34,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
66
67
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
68
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
69
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
70
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
71
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
72
|
+
Types of property 'path' are incompatible.
|
|
73
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
67
74
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
68
75
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
69
76
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
+
"src/components/pure/ProjectPageView.test/index.ts": {
|
|
3
|
+
"typeErrors": 37,
|
|
4
|
+
"staticErrors": 2,
|
|
5
|
+
"runTimeErrors": "?",
|
|
6
|
+
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/web/src/components/pure/ProjectPageView.test/index/prompt.txt",
|
|
7
|
+
"failingFeatures": {}
|
|
8
|
+
},
|
|
2
9
|
"src/lib/BaseSuite.test/node.test.ts": {
|
|
3
|
-
"typeErrors":
|
|
10
|
+
"typeErrors": 46,
|
|
4
11
|
"staticErrors": 0,
|
|
5
12
|
"runTimeErrors": 0,
|
|
6
13
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/BaseSuite.test/node.test/prompt.txt",
|
|
7
14
|
"failingFeatures": {}
|
|
8
15
|
},
|
|
9
16
|
"src/lib/BaseSuite.test/pure.test.ts": {
|
|
10
|
-
"typeErrors":
|
|
17
|
+
"typeErrors": 46,
|
|
11
18
|
"staticErrors": 0,
|
|
12
19
|
"runTimeErrors": 0,
|
|
13
20
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/lib/BaseSuite.test/pure.test/prompt.txt",
|
|
@@ -21,35 +28,35 @@
|
|
|
21
28
|
"failingFeatures": {}
|
|
22
29
|
},
|
|
23
30
|
"src/Pure.test.ts": {
|
|
24
|
-
"typeErrors":
|
|
31
|
+
"typeErrors": 39,
|
|
25
32
|
"staticErrors": 0,
|
|
26
|
-
"runTimeErrors": 1,
|
|
33
|
+
"runTimeErrors": -1,
|
|
27
34
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/Pure.test/prompt.txt",
|
|
28
35
|
"failingFeatures": {}
|
|
29
36
|
},
|
|
30
37
|
"src/lib/pmProxy.test/index.ts": {
|
|
31
|
-
"typeErrors":
|
|
38
|
+
"typeErrors": 32,
|
|
32
39
|
"staticErrors": 2,
|
|
33
40
|
"runTimeErrors": 0,
|
|
34
41
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/pmProxy.test/index/prompt.txt",
|
|
35
42
|
"failingFeatures": {}
|
|
36
43
|
},
|
|
37
44
|
"src/lib/core.test/core.test.ts": {
|
|
38
|
-
"typeErrors":
|
|
45
|
+
"typeErrors": 39,
|
|
39
46
|
"staticErrors": 1,
|
|
40
47
|
"runTimeErrors": 0,
|
|
41
48
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/core.test/core.test/prompt.txt",
|
|
42
49
|
"failingFeatures": {}
|
|
43
50
|
},
|
|
44
51
|
"src/lib/classBuilder.test/classBuilder.test.ts": {
|
|
45
|
-
"typeErrors":
|
|
52
|
+
"typeErrors": 66,
|
|
46
53
|
"staticErrors": 0,
|
|
47
54
|
"runTimeErrors": 0,
|
|
48
55
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/classBuilder.test/classBuilder.test/prompt.txt",
|
|
49
56
|
"failingFeatures": {}
|
|
50
57
|
},
|
|
51
58
|
"src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
|
|
52
|
-
"typeErrors":
|
|
59
|
+
"typeErrors": 29,
|
|
53
60
|
"staticErrors": 0,
|
|
54
61
|
"runTimeErrors": 0,
|
|
55
62
|
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/baseBuilder.test/baseBuilder.test.node/prompt.txt",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": [
|
|
3
|
+
{
|
|
4
|
+
"id": "",
|
|
5
|
+
"location": {
|
|
6
|
+
"column": 31,
|
|
7
|
+
"file": "package.json",
|
|
8
|
+
"length": 1,
|
|
9
|
+
"line": 169,
|
|
10
|
+
"lineText": " \"testeranto-react\": \"0.0.5\",",
|
|
11
|
+
"namespace": "",
|
|
12
|
+
"suggestion": ""
|
|
13
|
+
},
|
|
14
|
+
"notes": [],
|
|
15
|
+
"pluginName": "",
|
|
16
|
+
"text": "JSON does not support trailing commas"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"warnings": []
|
|
20
|
+
}
|