有没有办法可以阻止量角器在规范中执行更多测试,即使之前的测试没有失败?
> describe('tests', function () {
> it('should exit', function () {
> protractor.stop(); <---- is there a way to prevent executing more tests?
> });
> it('should not run', function () {
> expect(something).toBeTruthy();
> });
> });