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 fcfd1b1 commit e0aa969Copy full SHA for e0aa969
test/routes/api/v1/auth/sign_out_test.dart
@@ -79,7 +79,8 @@ void main() {
79
// Assert
80
expect(response.statusCode, equals(HttpStatus.methodNotAllowed));
81
verifyNever(
82
- () => mockAuthService.performSignOut(userId: any(named: 'userId')),);
+ () => mockAuthService.performSignOut(userId: any(named: 'userId')),
83
+ );
84
});
85
86
test('throws UnauthorizedException if user is null in context', () async {
@@ -108,7 +109,8 @@ void main() {
108
109
),
110
);
111
112
113
114
115
116
test('rethrows HtHttpException from AuthService', () async {
0 commit comments