test-count-2.js 179 B

12345678910111213141516
  1. import test from '../..';
  2. test('passCount', t => {
  3. t.pass();
  4. });
  5. test('failCount', t => {
  6. t.fail();
  7. });
  8. test.skip('skipCount', t => {
  9. t.pass();
  10. });
  11. test.todo('todoCount');