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
|
"dojo/_base/declare",
|
× |
UNCOV
5
|
"dijit/registry",
|
× |
UNCOV
6
|
"dijit/_WidgetBase",
|
× |
UNCOV
7
|
"dijit/_Container"
|
× |
UNCOV
8
|
], function (declare, registry, _WidgetBase, _Container) {
|
× |
9 |
return declare("lsmb/InvoiceLines", [_WidgetBase, _Container], { |
× |
UNCOV
10
|
removeLine: function (widgetid) { |
× |
11 |
registry.byId(widgetid).destroyRecursive(false);
|
× |
UNCOV
12
|
|
× |
13 |
this.emit("changed", { action: "removed" }); |
× |
UNCOV
14
|
} // removeLine
|
× |
UNCOV
15
|
}); |
× |
UNCOV
16
|
}); |
× |