每当我尝试运行我的单元测试(使用 buster 和执行 user 编写buster test
)并包含 jQuery(因为我的库依赖于它)。我收到以下错误:
./test/deps/jquery-1.7.2.min.js: window is not defined
这是我的 buster.js 配置文件: var config = module.exports;
config["GitJs Tests"] = {
rootPath: "../",
environment: "node",
sources: [
"src/Gitjs.js"
],
deps: [
"test/deps/*.js" // Jquery is in here
],
tests: [
"test/test_constructor.js"
]
};
为什么我会收到此错误,我该如何解决?