mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 10:55:23 -08:00
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
it('Timeout test', async function(done) {
|
|
this.timeout(1);
|
|
setTimeout(done, 1000);
|
|
});
|
|
|
|
it.skip('Skipped test', () => {
|
|
// do nothing
|
|
});
|