• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ledgersmb / LedgerSMB / 4401942645

pending completion
4401942645

push

github

GitHub
Jest components tests (#7264)

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

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/UI/js-src/lsmb/journal/fx_checkbox.js
UNCOV
1
/** @format */
×
UNCOV
2

×
3
define([
×
UNCOV
4
    "dijit/form/CheckBox",
×
UNCOV
5
    "dojo/_base/declare",
×
UNCOV
6
    "dojo/on",
×
UNCOV
7
    "dojo/dom-class"
×
UNCOV
8
], function (CheckBox, declare, on, domClass) {
×
9
    return declare("lsmb/journal/fx_checkbox", [CheckBox], {
×
UNCOV
10
        postCreate: function () {
×
11
            var self = this;
×
12
            this.inherited(arguments);
×
13
            on(this.domNode, "click", function () {
×
14
                if (self.checked) {
×
15
                    domClass.add("transaction-table", "fx-transaction");
×
16
                    domClass.remove("transaction-table", "no-fx-transaction");
×
UNCOV
17
                } else {
×
18
                    domClass.add("transaction-table", "no-fx-transaction");
×
19
                    domClass.remove("transaction-table", "fx-transaction");
×
UNCOV
20
                }
×
UNCOV
21
            });
×
UNCOV
22
        }
×
UNCOV
23
    });
×
UNCOV
24
});
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc