我正在使用Mocha在Express中测试API。事情按预期工作,但几个小时前,突然间没有测试会运行。自从事情开始以来,我没有做任何改变,除了测试本身,所以我不确定这笔交易是什么。我甚至试图废弃所有东西,所以现在我试图运行的是:
describe('make a test run', function(){
console.log('entered test');
before( function(){
console.log('before');
});
it('test 1', function(){
console.log('1');
});
it('test 2', function(){
console.log('2');
});
it('test 2', function(){
console.log('2');
});
after( function(){
console.log('after');
});
console.log('ran through test');
});
它打印"进入测试"并且"经历了测试,"但两者之间没什么。我错了什么?