()
| 13 | import { timeout } from 'ember-concurrency'; |
| 14 | |
| 15 | async function waitForSettled() { |
| 16 | await settled(); |
| 17 | await timeout(10); |
| 18 | await settled(); |
| 19 | } |
| 20 | |
| 21 | async function ensureVersionsExist(assert) { |
| 22 | await waitForSettled(); |
no outgoing calls
no test coverage detected