web 3d图形渲染器

28 lines
688 B

  1. # Suggest using `test.todo` (`prefer-todo`)
  2. When test cases are empty then it is better to mark them as `test.todo` as it
  3. will be highlighted in the summary output.
  4. ## Rule details
  5. This rule triggers a warning if empty test cases are used without 'test.todo'.
  6. ```js
  7. test('i need to write this test');
  8. ```
  9. ### Default configuration
  10. The following pattern is considered warning:
  11. ```js
  12. test('i need to write this test'); // Unimplemented test case
  13. test('i need to write this test', () => {}); // Empty test case body
  14. test.skip('i need to write this test', () => {}); // Empty test case body
  15. ```
  16. The following pattern is not warning:
  17. ```js
  18. test.todo('i need to write this test');
  19. ```