Install mocha and its types:
npm install mocha --save-dev
npm install @types/mocha --save-dev
Then, simply import mocha in your test files:
import 'mocha';
describe('my test', () => {
it('does something', () => {
// your test
});
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…