Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prefer-todo.md 688B

12345678910111213141516171819202122232425262728
  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. ```