angularjs – 我应该使用量角器或卡尔玛我的端到端测试吗?

前端之家收集整理的这篇文章主要介绍了angularjs – 我应该使用量角器或卡尔玛我的端到端测试吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我应该使用量角器还是Karma进行我的端对端测试?

Angular-seed使用Protractor / Selenium WebDriver用于E2E,但是angular-phonecat教程使用karma。

我读到我应该使用Karma单位测试和量角器E2E,这似乎很好,但我想我会在这里要求得到其他开发商的意见。

AngularJS团队建议使用量角器,因为它将取代角度场景选择器:

Angular Scenario Runner is in maintenance mode – If you’re starting a new Angular project,consider using 07000.

引自AngularJs documentation

教程angular-phonecat是很久以前开发的(在2011年主要),还没有更新使用一些Angular的新功能,如Protractor。

编辑

Protractor Docs – FAQ

Why both Karma and Protractor? When do I use which?

Karma is a great tool for unit testing,and Protractor is intended for
end to end or integration testing. This means that small tests for the
logic of your individual controllers,directives,and services should
be run using Karma. Big tests in which you have a running instance of
your entire application should be run using Protractor. Protractor is
intended to run tests from a user’s point of view – if your test could
be written down as instructions for a human interacting with your
application,it should be an end to end test written with Protractor.

Here’s a 07003 with more info.

原文链接:https://www.f2er.com/angularjs/147091.html

猜你在找的Angularjs相关文章