Angular-seed使用Protractor / Selenium WebDriver用于E2E,但是angular-phonecat教程使用karma。
我读到我应该使用Karma单位测试和量角器E2E,这似乎很好,但我想我会在这里要求得到其他开发商的意见。
Angular Scenario Runner is in maintenance mode – If you’re starting a new Angular project,consider using 07000.
教程angular-phonecat是很久以前开发的(在2011年主要),还没有更新使用一些Angular的新功能,如Protractor。
编辑
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.