如何使用jsmine.jQueryify与jasmine-node?

时间:2011-06-02 22:01:47

标签: javascript node.js bdd jasmine jsdom

是否可以使用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中假设类似浏览器的环境?

1 个答案:

答案 0 :(得分:2)

好的,基于一个this answer to a semi-related question,我可以让expect()执行。我想我的问题的答案不是使用内置的jQueryify函数,而是“手动”引入jQuery。

var fs = require('fs'),
    window = require('jsdom').jsdom('<html><head></head><body></body></html>').createWindow(),
    script = window.document.createElement('script'),
    jasmine = require('jasmine-node')

describe("jQueryify", function() {
    it('should run the test!', function () {
        script.src = './path/to/jquery.js'
        script.onload = function () {
            expect(typeof window.$).toEqual('function')
            asyncSpecDone()
        }
        window.document.head.appendChild(script)
        asyncSpecWait()
    })
})