在Python和nosetests
测试框架中,有一种标记测试的想法:
from nose.plugins.attrib import attr
@attr(speed='slow')
def test_big_download():
...
并运行只有特定标签的测试:
nosetests -a speed=slow
当需要从特定类别或类型运行测试时,这非常有用。
protractor
+jasmine
中有类似的内容吗?
我发现最接近的功能是1.6.0
:中引入的'grep' option
protractor conf.js --grep='pattern to match'
Grep是最接近这一点的,因为js中没有注释。