all files / modules/extensions/__tests__/ proxy-test.js

100% Statements 8/8
100% Branches 0/0
100% Functions 4/4
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15              
const expect = require("expect");
const mach = require("../../index");
 
describe("extensions/proxy", function () {
    beforeEach(function () {
        mach.extend(require("../proxy"));
    });
 
    describe("mach.createProxy", function () {
        it("is a function", function () {
            expect(mach.createProxy).toBeA("function");
        });
    });
});