website-page-frame
Version:
This library provides a way to allow browser based programs to have cross parent to child window communication through code.
25 lines (12 loc) • 394 B
JavaScript
var Builder = require("../../../../src/general/builders/Builder.js").Builder;
function getMockBuilder() {
return new Builder();
}
describe("Builder Class test suite", function() {
beforeEach(function() {
this.builder = getMockBuilder();
});
it("Finish Build Test", function() {
expect(this.builder.finishBuild.bind(this)).toThrowError();
});
});