UNPKG

jest-progress-bar-reporter

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