| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 1× 1× 1× 1× 1× 1× | 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");
});
});
});
|