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%)
699.21 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
/* global dojo, dijit */
|
× |
UNCOV
3
|
|
× |
4 |
define(["dojo/_base/declare", "dijit/form/Button"], function (declare, button) { |
× |
5 |
return declare("lsmb/payments/ToggleIncludeButton", [button], { |
× |
UNCOV
6
|
query: null, |
× |
UNCOV
7
|
onClick: function () { |
× |
8 |
dojo.query(this.query, this.valueNode.form).forEach(function ( |
× |
UNCOV
9
|
node |
× |
UNCOV
10
|
) { |
× |
11 |
var n = dijit.getEnclosingWidget(node);
|
× |
12 |
n.set("checked", !n.get("checked")); |
× |
UNCOV
13
|
}); |
× |
UNCOV
14
|
} |
× |
UNCOV
15
|
}); |
× |
UNCOV
16
|
}); |
× |