Code coverage report for vendor/dummy_vendor_lib.js

Statements: 66.67% (2 / 3)      Branches: 100% (2 / 2)      Functions: 50% (1 / 2)      Lines: 66.67% (2 / 3)     

All files » vendor/ » dummy_vendor_lib.js
1 2 3 4 5 6 7 8 9 101   2              
module.exports = {
    vendorFoo: function (input) {
        return input < 10 ? input : input + 100;
    },
    vendorBar: function () {
        throw new Error("Let's not call this function in tests");
    }
};