match-no-match.js 141 B

1234567891011121314
  1. import test from '../..';
  2. test('foo', t => {
  3. t.pass();
  4. });
  5. test.only('bar', t => {
  6. t.pass();
  7. });
  8. test.only('baz', t => {
  9. t.pass();
  10. });