PENDING TESTS

不给测试用例传递一个回调函数,就是被等待实现的测试用例,但同样会在报告中体现出来。

  1. describe('Array', function() {
  2. describe('#indexOf', function () {
  3. // 等待测试
  4. it('should return -1 when the value is nor present');
  5. });
  6. });