(seconds)
| 45 | } |
| 46 | |
| 47 | async function wait(seconds) { |
| 48 | return new Promise((resolve) => { |
| 49 | setTimeout(resolve, seconds * 1000); |
| 50 | }); |
| 51 | } |
| 52 | |
| 53 | async function waitForContentToStabilize() { |
| 54 | return new Promise((resolve) => { |
no outgoing calls
no test coverage detected