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 5a12108 commit b3a1d87Copy full SHA for b3a1d87
test/routes/api/v1/auth/me_test.dart
@@ -69,7 +69,9 @@ void main() {
69
// Check metadata structure and requestId presence
70
expect(decodedBody['metadata'], isA<Map<String, dynamic>>());
71
expect(
72
- decodedBody['metadata']?['request_id'], equals(testRequestIdValue),);
+ decodedBody['metadata']?['request_id'],
73
+ equals(testRequestIdValue),
74
+ );
75
expect(decodedBody['metadata']?['timestamp'], isNotNull);
76
});
77
0 commit comments