Skip to content

Instantly share code, notes, and snippets.

View hustcc's full-sized avatar
🎯
Focusing

hustcc hustcc

🎯
Focusing
View GitHub Profile
@hustcc
hustcc / jsdom-iframe-test.js
Created January 15, 2018 10:43 — forked from dijs/jsdom-iframe-test.js
Example of testing iframe messaging using jsdom
import { expect } from 'chai';
import jsdom from 'jsdom';
describe('JSDOM', () => {
it('should communicate with inner iframes', done => {
jsdom.env({
url: "http://bar.com/",
done (err, window) {
var frame = window.document.createElement('iframe');
window.document.body.appendChild(frame);