github
56 of 145 branches covered (38.62%)
7 of 28 new or added lines in 2 files covered. (25.0%)
3399 existing lines in 78 files now uncovered.8606 of 20217 relevant lines covered (42.57%)
693.67 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
|
}); |
× |