File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ define([
10
10
'use strict' ;
11
11
12
12
var model ,
13
+ /**
14
+ * @param index
15
+ * @returns {Object }
16
+ * @constructor
17
+ */
13
18
ElementMock = function ( index ) {
14
19
return {
15
20
/**
@@ -40,7 +45,7 @@ define([
40
45
/**
41
46
* Mock function which return length of record data
42
47
*
43
- * @returns {{length: number} }
48
+ * @returns {Object }
44
49
*/
45
50
model . recordData = function ( ) {
46
51
return {
@@ -55,7 +60,7 @@ define([
55
60
/**
56
61
* Mock function, which return the number of pages
57
62
*
58
- * @returns {number }
63
+ * @returns {Number }
59
64
*/
60
65
model . pages = function ( ) {
61
66
return 3 ;
@@ -79,6 +84,9 @@ define([
79
84
}
80
85
] ;
81
86
87
+ /**
88
+ * @returns {Number }
89
+ */
82
90
model . pages = function ( ) {
83
91
return 3 ;
84
92
} ;
You can’t perform that action at this time.
0 commit comments