match-no-match-2.js 195 B

1234567891011121314
  1. import test from '../..';
  2. test('this test will match', t => {
  3. t.pass();
  4. });
  5. test('this test will not match', t => {
  6. t.pass();
  7. });
  8. test('this test will also not match', t => {
  9. t.pass();
  10. });