Skip to content

Commit 843d928

Browse files
committed
Fix host tests
1 parent d881f31 commit 843d928

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/host/app/services/matrix-service.ts

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type Owner from '@ember/owner';
22
import type RouterService from '@ember/routing/router-service';
33
import { debounce } from '@ember/runloop';
44
import Service, { service } from '@ember/service';
5+
import { buildWaiter } from '@ember/test-waiters';
56
import { cached, tracked } from '@glimmer/tracking';
67

78
import { restartableTask, task } from 'ember-concurrency';
@@ -122,6 +123,7 @@ const SLIDING_SYNC_LIST_RANGE_SIZE = 10;
122123
const SLIDING_SYNC_LIST_TIMELINE_LIMIT = 1;
123124

124125
const realmEventsLogger = logger('realm:events');
126+
const waiter = buildWaiter('matrix-service:waiter');
125127

126128
export type OperatorModeContext = {
127129
submode: Submode;
@@ -1181,6 +1183,7 @@ export default class MatrixService extends Service {
11811183
}
11821184

11831185
this.timelineLoadingState.set(roomId, true);
1186+
let token = waiter.beginAsync();
11841187
try {
11851188
while (room.oldState.paginationToken != null) {
11861189
await this.client.scrollback(room);
@@ -1209,6 +1212,7 @@ export default class MatrixService extends Service {
12091212
});
12101213
} finally {
12111214
this.timelineLoadingState.set(roomId, false);
1215+
waiter.endAsync(token);
12121216
}
12131217
});
12141218

0 commit comments

Comments
 (0)