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