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 (13 loc) • 683 B
JavaScript
var ResponseModificationChainLink = require("../../../../src/native/chain-links/ResponseModificationChainLink.js").ResponseModificationChainLink;
var TaskChainLink = require("../../../../src/general/chain-links/TaskChainLink.js").TaskChainLink;
function getMockResponseModificationChainLink() {
return new ResponseModificationChainLink();
}
describe("ResponseModificationChainLink Class Test Suite", function() {
beforeEach(function() {
this.responseModificationChainLink = getMockResponseModificationChainLink();
});
it("Constructor Test", function() {
expect(this.responseModificationChainLink).toBeInstanceOf(TaskChainLink);
});
});