testilo 39.0.1 → 39.0.3

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": "39.0.1",
3
+ "version": "39.0.3",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -1146,6 +1146,13 @@ exports.issues = {
1146
1146
  what: 'Language specified in the lang attribute of the element does not appear to be well-formed'
1147
1147
  }
1148
1148
  },
1149
+ ibm: {
1150
+ element_lang_valid: {
1151
+ variable: false,
1152
+ quality: 1,
1153
+ what: 'Element lang attribute does not include a valid primary language'
1154
+ }
1155
+ },
1149
1156
  nuVal: {
1150
1157
  'When the attribute xml:lang in no namespace is specified, the element must also have the attribute lang present with the same value.': {
1151
1158
  variable: false,
@@ -1240,6 +1247,13 @@ exports.issues = {
1240
1247
  what: 'object element contains no text alternative'
1241
1248
  }
1242
1249
  },
1250
+ ibm: {
1251
+ object_text_exists: {
1252
+ variable: false,
1253
+ quality: 1,
1254
+ what: 'object element has no text alternative'
1255
+ }
1256
+ },
1243
1257
  qualWeb: {
1244
1258
  'QW-ACT-R42': {
1245
1259
  variable: false,
@@ -42,10 +42,10 @@
42
42
  targetIDs[targetData[1]] = targetData[0];
43
43
  });
44
44
  summaryReport.summaries.forEach(result => {
45
- const {what} = result.sources.target;
45
+ const {targetWhat} = result;
46
46
  graphData.push({
47
- targetID: targetIDs[what],
48
- targetWhat: what,
47
+ targetID: targetIDs[targetWhat],
48
+ targetWhat,
49
49
  time: new Date(`20${result.endTime}Z`),
50
50
  score: result.score
51
51
  });