UNPKG

jest-progress-bar-reporter

Version:
12 lines (8 loc) 251 B
const { DELAY_MS } = require('./conf'); describe('Test suite #9', () => { it('this is a passing test', (done) => { setTimeout(done, DELAY_MS); }); it('this is a passing test', () => {}); it.skip('this is a pending test', () => {}); });