matcher-skip.js 225 B

12345678910111213141516171819202122
  1. import test from '../..';
  2. test('foo', t => {
  3. t.pass();
  4. });
  5. test('bar', t => {
  6. t.pass();
  7. });
  8. test('baz', t => {
  9. t.fail();
  10. });
  11. test('tests are fun', t => {
  12. t.pass();
  13. });
  14. test('tests are not fun', t => {
  15. t.fail();
  16. });