mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 02:45:22 -08:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
test('Timeout test', async () => {
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
}, 1);
|
|
|
|
test.skip('Skipped test', () => {
|
|
// do nothing
|
|
});
|