mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
it('Timeout test', async function(done) {
|
|
this.timeout(1);
|
|
setTimeout(done, 1000);
|
|
});
|
|
|
|
it.skip('Skipped test', () => {
|
|
// do nothing
|
|
});
|