我有一个简单的测试
import {topNavigationLinks} from './navigation-links.js';
import {assert,should,expect=} from 'chai';
import {mocha} from 'mocha';
describe('Navigation Links', () => {
it('should have the right value', function () {
expect(topNavigationLinks(123).to.equal([]));
});
});
但我一直收到此错误
Error: Cannot find module 'it'
任何线索?
答案 0 :(得分:1)
答案 1 :(得分:1)
错误在于将node_modules作为我的mocha脚本的一部分。所以它遍历了所有的node_modules,显然没有找到它的声明。删除它照顾它