@sapui5/sap.fe.test 1.108.15 → 1.108.17
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
package/src/sap/fe/test/.library
CHANGED
|
@@ -909,6 +909,10 @@ sap.ui.define(
|
|
|
909
909
|
},
|
|
910
910
|
cellValue: function (vColumn, vExpectedValue) {
|
|
911
911
|
return function (oRow) {
|
|
912
|
+
if (oRow.isA("sap.m.GroupHeaderListItem")) {
|
|
913
|
+
// don´t check grouping rows
|
|
914
|
+
return null;
|
|
915
|
+
}
|
|
912
916
|
var oCellField = TableBuilder.Row.Matchers.cell(vColumn)(oRow);
|
|
913
917
|
while (oCellField.isA("sap.fe.macros.MacroAPI")) {
|
|
914
918
|
oCellField = oCellField.getContent();
|
|
@@ -22,7 +22,7 @@ sap.ui.define(["sap/ui/core/Core", "sap/ui/core/library"], function (Core, _libr
|
|
|
22
22
|
controls: [],
|
|
23
23
|
elements: [],
|
|
24
24
|
// eslint-disable-next-line no-template-curly-in-string
|
|
25
|
-
version: "1.108.
|
|
25
|
+
version: "1.108.17",
|
|
26
26
|
noLibraryCSS: true
|
|
27
27
|
});
|
|
28
28
|
return thisLib;
|