Я использую Mocha и Expect для тестирования моего приложения узла.Кажется, метод toBeA
не работает.Любая помощь.Вот мой код и ошибка, которую я получил.
TypeError: Cannot read property 'toBeA' of undefined
const expect = require('expect');
const util = require('./util');
it('should add two numbers', () => {
const result = enter code hereutil.add(2, 2);
expect(result).toBe(4).toBeA('number');
});