long-running.js 110 B

12345678
  1. import test from '../..';
  2. test.cb('slow', t => {
  3. setTimeout(t.end, 5000);
  4. });
  5. test('fast', t => t.pass());