我有一个sails.js应用程序,我想用mocha测试,在我的测试文件夹中我有2个测试,但是当我运行mocha时,只有一个测试被执行。
Test1.js
var request = require('supertest');
describe.only('UserController', function() {
describe('#login()', function() {
it('should redirect to /mypage', function (done) {
done();
});
});
});
Test2.js
describe.only('UsersModel', function() {
describe('#find()', function() {
it('should check find function', function (done) {
done();
});
});
});
我使用此命令运行测试:
./node_modules/.bin/mocha
输出
UserController
#login()
✓ should redirect to /mypage
1 passing (10ms)
请解释我的错误。