我的C:\ Users \ project \ text.html中有这个text.html文件,我想将其加载到测试文件.js中。
我想在测试功能之一中加载HTML文件,因此可以测试HTML元素。当我将html内容放入这样的测试文件中时,效果很好:
const jsdom = require("jsdom");
const { JSDOM } = jsdom;
...
Then('...', function() {
const dom = new JSDOM(`<!DOCTYPE html><div id="hey" class="modal-footer">Hello world</div>`);
});