对于我的项目,我正在尝试设置Mocha来运行Chai测试,但是我遇到的问题是测试根本就没有运行。浏览器报告没有测试通过,失败或正在运行。
以下是测试的代码:
import {assert} from 'chai';
import {Meteor} from 'meteor/meteor';
if (Meteor.isclient) {
describe('Recipe model', function () {
it('should test that a recipe is created', function () {
assert.isTrue(true);
});
});
}
我使用以下命令运行测试:
meteor test --driver-package practicalmeteor:mocha
我已安装了practicalmeteor:chai。谷歌搜索建议在我的测试开始时放置chai.should(),但这没有帮助。我对所有建议持开放态度。
干杯!
答案 0 :(得分:1)
可能的问题之一是代码第4行的拼写错误:将Meteor.isclient
替换为Meteor.isClient
。您的测试甚至没有执行,因为Meteor.isclient
始终是false
。
答案 1 :(得分:1)
确保不将测试文件放在/ tests目录中。我知道它不直观,但流星忽略了内部/测试的一切。
答案 2 :(得分:0)
Turns out I had weird issues with importing assert. I just had to do the following as noted from @Tdm:
import {chai} from 'meteor/practicalmeteor:chai'