2023-03-15 16:00:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2022-01-14 21:16:38 +00:00
|
|
|
import { settled } from '@ember/test-helpers';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2022-01-14 21:16:38 +00:00
|
|
|
export async function pollCluster(owner) {
|
2019-06-20 13:37:27 +00:00
|
|
|
const store = owner.lookup('service:store');
|
2022-01-14 21:16:38 +00:00
|
|
|
await store.peekAll('cluster').firstObject.reload();
|
|
|
|
await settled();
|
2018-09-25 16:28:26 +00:00
|
|
|
}
|