push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
|
× |
3 |
define([ |
× |
UNCOV
4
|
"lsmb/FilteringSelect",
|
× |
UNCOV
5
|
"dojo/_base/declare",
|
× |
UNCOV
6
|
"lsmb/accounts/AccountRestStore"
|
× |
UNCOV
7
|
], function (filteringSelect, declare, accountRestStore) {
|
× |
8 |
var mySelect = new declare( |
× |
UNCOV
9
|
"lsmb/accounts/AccountSelector",
|
× |
UNCOV
10
|
[filteringSelect], |
× |
UNCOV
11
|
{ |
× |
UNCOV
12
|
store: accountRestStore,
|
× |
UNCOV
13
|
style: "width: 300px", |
× |
UNCOV
14
|
// query: {"charttype": "A"},
|
× |
UNCOV
15
|
highlightMatch: "all", |
× |
UNCOV
16
|
searchAttr: "label", |
× |
UNCOV
17
|
labelAttr: "label", |
× |
UNCOV
18
|
initialValue: null, |
× |
UNCOV
19
|
constructor: function () { |
× |
20 |
this.inherited(arguments); |
× |
21 |
this.initialValue = arguments[0].value; |
× |
UNCOV
22
|
} |
× |
UNCOV
23
|
} |
× |
UNCOV
24
|
); |
× |
25 |
return mySelect;
|
× |
UNCOV
26
|
}); |
× |