We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95de3d0 commit 2906475Copy full SHA for 2906475
test/widgets/compose_box_test.dart
@@ -48,6 +48,8 @@ void main() {
48
if (narrow case ChannelNarrow(:var streamId) || TopicNarrow(: var streamId)) {
49
assert(store.streams.values.any((stream) => stream.streamId == streamId),
50
'Add a channel with "streamId" the same as of $narrow.streamId to the store.');
51
+ assert(store.users.values.any((user) => user.userId == account.userId),
52
+ 'Add an user with "userId" the same as of $account.userId to the store.');
53
}
54
await tester.pumpWidget(TestZulipApp(accountId: account.id,
55
child: Column(
0 commit comments