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 1 module.exports = {
2 vendorFoo: function (input) {
3 2 return input < 10 ? input : input + 100;
4 },
5 vendorBar: function () {
6 throw new Error("Let's not call this function in tests");
7 }
8 };
9
10