标签: javascript jquery jasmine
如果页面上有一些DOM元素,有没有办法禁用Jasmine测试?
$(function() { if ( $('#id').length !== 0 ) { describe('some test', function() { // tests }); }; });
上面的示例不起作用。