gpt4 book ai didi

javascript - chai 没有在 Karma-mocha 中定义

转载 作者:数据小太阳 更新时间:2023-10-29 06:11:33 24 4
gpt4 key购买 nike

我正在使用 mocha-phantomjs 配置成功运行我的测试用例。现在我正在使用 Karma 启动器运行这些测试。但我遇到了问题 Chai is not defined

这是我的配置文件。

 module.exports = function(config) {
config.set({
client: {
mocha: {
ui: 'tdd'
}
},
basePath: '',
frameworks: ['mocha'],
files: [
'web/js/*.js',
'test/lib/*.js',
'node_modules/chai/chai.js' //added this on suggestion of the answer in stackoverflow
],
exclude: [
],
preprocessors: {
},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Firefox'],
singleRun: false,
});
};

enter image description here

我研究了一下,发现了这个 links ,

最佳答案

我为 chai 安装了 karma-chai 插件 https://github.com/eclifford/karma-chai-jquery/issues/3

为此更改框架。

frameworks: ['mocha', 'chai']

并添加这些依赖项。

npm install karma-chai --save-dev

现在我的问题已经解决了。希望这对您也有帮助。

关于javascript - chai 没有在 Karma-mocha 中定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24953218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com