所以我尝试查找此错误,但我似乎无法找到满足我的错误的答案。我使用mocha和chai-http来测试一些API。我只是使用相应的RESTFUL方法(POST,GET,PUT)来检查端点并检查响应(非常直接)。问题是,我的测试套件单独运行(如果我一次运行一个),但是当我使用我的gulp命令运行它们时...我得到的回调不是函数"对于某些测试用例(如果您熟悉mocha,则为if hook中的那些)
这是我得到的错误:
Uncaught TypeError: callback.apply is not a function
at Immediate.<anonymous> (node_modules/mongoose/lib/model.js:3683:16)
at Immediate._onImmediate (node_modules/mongoose/node_modules/mquery/lib/utils.js:137:16)
这是我的测试用例所在目录的结构:
test
backend
assignments_tests.js
application_tests.js
courses_test.js
&安培;我有一个gulp文件,包含以下内容:
// Set the environment variable for the test cases to point to production
gulp.task('set-testing-env', function() {
return process.env.NODE_ENV = 'production';
})
// gulp task for backend
gulp.task('test-backend', ['set-testing-env'], function() {
return gulp.src('test/backend/**/*.js', {read: false})
.pipe(mocha({
reporter: 'spec',
timeout: 60000
}))
.on('error', function(err) {
// console.log(err);
process.exit();
});
});
&安培;最后我的测试用例样本:
describe("testing GET" ....
before(function(done) {
... setting up stuff here and calling done ...
})
describe("get courses information and courses offered", function() {
it("gets a courses information", function(done) {
const endpoint = test.endpoint + "/courseInfo/" + test.course
chai.request(app)
.get(endpoint)
.end(function(err, res) {
expect(err, "Error hitting endpoint").to.be.null;
expect(res, "Expected data in json format").to.be.json;
expect(res, "Expected status to be 200").to.have.status(200);
expect(res.body, "Expected course info!").to.have.length(1);
expect(res.body[0],"Missing keys").to.have.all.keys(courseInfo);
done();
})
})
})
describe("testing POST" ...
before(function(done) {
... setting up and calling done ...
})
describe(...
it(...)
})
})
我不太清楚为什么我收到回调而不是功能错误。 :( 任何帮助将不胜感激!
答案 0 :(得分:0)
可能在你没有包含在这里的代码的某些部分,你正在调用一个Mongoose方法,传递像太多对象这样的参数,就像这个问题一样:
其中一个对象被解释为一个函数,但不能这样调用。
这是一个常见问题,但你没有包含任何运行Mongoose方法的代码,因此很难判断这是否是问题。