问题 I have a sails.js app that I want to test with mocha, in my test folder I have 2 tests, but when I run mocha only one test gets executed. 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(); }); }); }); I run