We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3047e9c commit 0bdc6faCopy full SHA for 0bdc6fa
packages/realtime_client/test/socket_test.dart
@@ -423,7 +423,7 @@ void main() {
423
});
424
425
group('setAuth', () {
426
- final updateJoinPayload = {'user_token': 'token123'};
+ final updateJoinPayload = {'acess_token': 'token123'};
427
final pushPayload = {'access_token': 'token123'};
428
429
test(
packages/supabase/test/mock_test.dart
@@ -165,7 +165,7 @@ void main() {
165
webSocket!.add(replyString);
166
167
// Send an insert event
168
- await Future.delayed(Duration(milliseconds: 100));
+ await Future.delayed(Duration(milliseconds: 10));
169
final insertString = jsonEncode({
170
'topic': topic,
171
'event': 'postgres_changes',
0 commit comments