我正在努力让mocha,jsdom,es6模块与babel一起玩jquery。
这是一个模块
// lib/dom.js
import $ from 'jquery';
const node = (tag)=> $(`<${tag} />`)
export {
node
}
这是一个测试
// test/dom.js
import assert from 'assert';
import { node } from '../src/lib/dom';
describe('node(tag)', ()=> {
it('should return a Node', ()=> {
let img = node('img');
assert(img.nodeName === 'IMG');
});
});
这是jsdom设置
// test/_setup.js
var jsdom = require('jsdom');
global.document = jsdom.jsdom('<!doctype html><html><body></body></html>');
global.window = document.parentWindow;
要运行的脚本
mocha --compilers js:babel-register --recursive
我需要更改以允许jsdom加载jquery,以便dom.js可以加载jquery模块而不会收到错误:
错误:jQuery需要一个带文档的窗口
答案 0 :(得分:8)
知道了,test / _setup.js需要以下内容:
global.document = require('jsdom').jsdom('<html></html>');
global.window = document.defaultView;
global.$ = require('jquery')(window);
document.parentWindow已从jsdom弃用。
答案 1 :(得分:1)
我认为这将是一个更合适的示例,因为在这种情况下,我使用的是es6 import:
import {JSDOM} from 'jsdom';
import * as $ from 'jquery';
const dom = new JSDOM(`
<!DOCTYPE html>
<p>Hello world</p>
<table id="table">
<tr>
<td> student</td>
</tr>
</table>
`);
// if you are using TypeScript you will need to ignore next line
// @ts-ignore
global.window = dom.window;
// @ts-ignore
global.document = dom.window.document;
// And now you can access JSDOM document from Jquery
$('#table').html(); // ?