Tinytest In App Meteor包已经被淘汰了。使用Tinytest测试您的Meteor应用程序,就像您测试包一样。不使用Velocity,因此测试不会在镜像中运行。您必须清理您创建的任何数据。如果您想在您的应用程序中使用Velocity和Tinytest,请参阅我的。安装还需要tinytest包。使用以下命令安装两者:
$ meteor add tinytest numtel:tinytest-in-app
快速开始:在任何文件中向您的应用程序添加测试
Tinytest.add('test title', function(test) {
test.equal(true, true);
});
在浏览器中打开Javascript控制台,执行 runTinyTest()
工具。
暂无评论