对于我的protrator测试,我想在每个测试规范的开头提供附加信息,例如指向自动测试所覆盖的测试用例的链接。
类似的东西:
describe('Test Case ABC0001 - http://www.someinternalsite.com/testcases/bla', function(){
describe('when performing X', function(){
it('should to Z', function() {
button.click();
//other actions...
expect(...).toEqual(...);
});
});
});
我的想法是,我希望用户能够导航到为我编写的每个测试套件记录的测试用例。所以我需要在我的测试运行结束时输出的量角器HTML报告中呈现链接。
是否可以在Jasmine描述语句中包含超链接?