如何将 jsdom.jQueryify 与 jasmine-node 一起使用?
是否可以使用 jsdom 的 jQueryify 功能来使用 jasmine-node?我想做的是使用 NodeJS 来测试一些依赖于 DOM 是否存在的 JavaScript。
这是我尝试过的简化案例。当我运行脚本时,jasmine-node 会识别规范,但不会运行 expect()
:
var fs = require('fs'),
jsdom = require('jsdom'),
window = jsdom.createWindow(),
jasmine = require('jasmine-node')
describe("jQueryify", function() {
it('should run the test!', function () {
jsdom.jQueryify(window, function (window, jquery) {
expect(1).toEqual(1)
})
})
})
或者,是否有一种不同/更好的方法来测试 NodeJS 中的内容,假设类似浏览器环境?
Is it possible to user jasmine-node with the jQueryify feature of jsdom? What I'm trying to do is use NodeJS to test some JavaScript that depends on the presence of the DOM.
Here is a reduced case of what I tried. When I run the script, jasmine-node recognizes the spec, but doesn't run the expect()
:
var fs = require('fs'),
jsdom = require('jsdom'),
window = jsdom.createWindow(),
jasmine = require('jasmine-node')
describe("jQueryify", function() {
it('should run the test!', function () {
jsdom.jQueryify(window, function (window, jquery) {
expect(1).toEqual(1)
})
})
})
Alternately, is there a different/better way to test stuff in NodeJS that assumes a browser-like environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,基于这个半相关问题的答案< /a>,我能够执行
expect()
。我想我的问题的答案不是使用内置的 jQueryify 函数,而是“手动”引入 jQuery。OK, based on one this answer to a semi-related question, I was able to get the
expect()
to execute. I guess the answer to my question is not to use the built-in jQueryify function, but to pull in jQuery 'manually'.