Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
restore deprecated test
  • Loading branch information
p-shapovalov committed Oct 8, 2021
commit bebb406f75c25d8fd1b9bfdf7db6b7586f833893
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ void main() {
'disconnect': null,
'isSignedIn': true,
'requestScopes': true,
'getTokens': <dynamic, dynamic>{'idToken': '123', 'accessToken': '456'},
'getTokens': <dynamic, dynamic>{
'idToken': '123',
'accessToken': '456',
'serverAuthCode': '789',
},
};

final List<MethodCall> log = <MethodCall>[];
Expand Down Expand Up @@ -347,6 +351,7 @@ void main() {

expect(auth.accessToken, '456');
expect(auth.idToken, '123');
expect(auth.serverAuthCode, '789');
expect(
log,
<Matcher>[
Expand Down