milestone/stable-1-reconcile-auth-3 #176

Merged
hugo merged 47 commits from milestone/stable-1-reconcile-auth-3 into master 2023-04-13 21:52:44 +00:00
Showing only changes of commit 6152436411 - Show all commits

View File

@ -67,6 +67,9 @@ void main() {
when(() => authenticationRepository.sessionStream()).thenAnswer( when(() => authenticationRepository.sessionStream()).thenAnswer(
(_) => const Stream.empty(), (_) => const Stream.empty(),
); );
when(() => authenticationRepository.checkForCachedAccount()).thenAnswer(
(_) => Future<void>.value(),
);
}); });
test('initial auth state is `unknown`', () { test('initial auth state is `unknown`', () {