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) • 563 B
JavaScript
var WebsitePageFramePingClient = require("../../../../src/client/clients/WebsitePageFramePingClient.js").WebsitePageFramePingClient;
function getMockWebsitePageFramePingClient() {
return new WebsitePageFramePingClient();
}
describe("WebsitePageFramePingClient Test Suite", function() {
beforeEach(function() {
this.websitePageFramePingClient = getMockWebsitePageFramePingClient();
});
it("Send Message PreChecks Test", function() {
expect(this.websitePageFramePingClient.sendMessagePreChecks()).toBe(true);
});
});