mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 22:37:09 +01:00
7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
test('Timeout test', async () => {
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
}, 1);
|
|
|
|
test.skip('Skipped test', () => {
|
|
// do nothing
|
|
});
|