pagean 6.0.0 → 6.0.4
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/lib/report-template.handlebars +9 -4
- package/package.json +11 -11
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
font-size: 1rem;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
.pre {
|
|
44
|
+
font-family: monospace;
|
|
45
|
+
white-space: pre-wrap;
|
|
46
|
+
}
|
|
47
|
+
|
|
43
48
|
.project,
|
|
44
49
|
.started {
|
|
45
50
|
margin: 0;
|
|
@@ -149,13 +154,13 @@
|
|
|
149
154
|
}
|
|
150
155
|
|
|
151
156
|
.test .data li:hover {
|
|
152
|
-
background-color: rgba(255 255 255 10%);
|
|
157
|
+
background-color: rgba(255 255 255 / 10%);
|
|
153
158
|
border: 1px dotted;
|
|
154
159
|
border-right: 4px solid;
|
|
155
160
|
padding: calc(0.25rem - 1px);
|
|
156
161
|
}
|
|
157
162
|
|
|
158
|
-
.test .data pre {
|
|
163
|
+
.test .data .pre {
|
|
159
164
|
margin: 0 0 0.25rem;
|
|
160
165
|
}
|
|
161
166
|
|
|
@@ -197,7 +202,7 @@
|
|
|
197
202
|
<ul>
|
|
198
203
|
{{#each data}}
|
|
199
204
|
<li>
|
|
200
|
-
<pre>{{json .}}</
|
|
205
|
+
<div class="pre">{{json .}}</div>
|
|
201
206
|
</li>
|
|
202
207
|
{{/each}}
|
|
203
208
|
</ul>
|
|
@@ -207,7 +212,7 @@
|
|
|
207
212
|
{{else if data.error}}
|
|
208
213
|
<div class="error">
|
|
209
214
|
<h3>Error:</h3>
|
|
210
|
-
<pre>{{json data.error}}</
|
|
215
|
+
<div class="pre">{{json data.error}}</div>
|
|
211
216
|
</div>
|
|
212
217
|
{{/if}}
|
|
213
218
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagean",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "Pagean is a web page analysis tool designed to automate tests requiring web pages to be loaded in a browser window (e.g. horizontal scrollbar, console errors)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pagean": "./bin/pagean.js",
|
|
@@ -48,27 +48,27 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://gitlab.com/gitlab-ci-utils/pagean#readme",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@aarongoldenthal/eslint-config-standard": "^10.0.
|
|
52
|
-
"@aarongoldenthal/stylelint-config-standard": "^
|
|
51
|
+
"@aarongoldenthal/eslint-config-standard": "^10.0.2",
|
|
52
|
+
"@aarongoldenthal/stylelint-config-standard": "^6.0.0",
|
|
53
53
|
"bin-tester": "^2.0.1",
|
|
54
|
-
"eslint": "^8.
|
|
55
|
-
"jest": "^27.
|
|
54
|
+
"eslint": "^8.5.0",
|
|
55
|
+
"jest": "^27.4.5",
|
|
56
56
|
"jest-junit": "^13.0.0",
|
|
57
|
-
"markdownlint-cli": "^0.
|
|
57
|
+
"markdownlint-cli": "^0.30.0",
|
|
58
58
|
"strip-ansi": "^6.0.1",
|
|
59
|
-
"stylelint": "^14.0
|
|
59
|
+
"stylelint": "^14.1.0"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"ajv": "^8.
|
|
62
|
+
"ajv": "^8.8.2",
|
|
63
63
|
"ajv-errors": "^3.0.0",
|
|
64
64
|
"axios": "^0.24.0",
|
|
65
65
|
"ci-logger": "^4.0.1",
|
|
66
66
|
"commander": "^8.3.0",
|
|
67
67
|
"handlebars": "^4.7.7",
|
|
68
|
-
"htmlhint": "^0.
|
|
68
|
+
"htmlhint": "^1.0.0",
|
|
69
69
|
"kleur": "^4.1.4",
|
|
70
70
|
"normalize-url": "^6.1.0",
|
|
71
71
|
"protocolify": "^3.0.0",
|
|
72
|
-
"puppeteer": "^
|
|
72
|
+
"puppeteer": "^13.0.0"
|
|
73
73
|
}
|
|
74
|
-
}
|
|
74
|
+
}
|