testilo 44.2.2 → 44.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "44.2.2",
3
+ "version": "44.2.4",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -209,6 +209,11 @@ exports.issues = {
209
209
  quality: 1,
210
210
  what: 'Multiple landmarks with the same parent region are not distinguished from one another [invalid on invisible elements]'
211
211
  },
212
+ html_lang_exists: {
213
+ variable: false,
214
+ quality: 1,
215
+ what: 'Page detected as HTML, but has no lang attribute [invalid]'
216
+ },
212
217
  style_background_decorative: {
213
218
  variable: false,
214
219
  quality: 1,
@@ -1444,13 +1449,6 @@ exports.issues = {
1444
1449
  what: 'html element has no lang or xml:lang attribute'
1445
1450
  }
1446
1451
  },
1447
- ibm: {
1448
- html_lang_exists: {
1449
- variable: false,
1450
- quality: 1,
1451
- what: 'Page detected as HTML, but has no lang attribute'
1452
- }
1453
- },
1454
1452
  nuVal: {
1455
1453
  'Consider adding a lang attribute to the html start tag to declare the language of this document.': {
1456
1454
  variable: false,
@@ -218,7 +218,6 @@ exports.scorer = report => {
218
218
  weight: issues[issueName].weight,
219
219
  countLimit: issues[issueName].max,
220
220
  instanceCounts: {},
221
- elementXPaths: [],
222
221
  tools: {}
223
222
  };
224
223
  const issueDetails = details.issue[issueName];