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 527b5bf commit 61b179fCopy full SHA for 61b179f
packages/supabase_flutter/test/storage_test.dart
@@ -12,11 +12,12 @@ void main() {
12
13
Future<SharedPreferencesLocalStorage> createFreshLocalStorage() async {
14
// Use a unique key for each test to ensure complete isolation
15
- final uniqueKey = 'test_persist_key_${DateTime.now().microsecondsSinceEpoch}';
16
-
+ final uniqueKey =
+ 'test_persist_key_${DateTime.now().microsecondsSinceEpoch}';
17
+
18
// Set up fresh shared preferences for each test
19
SharedPreferences.setMockInitialValues({});
20
21
final localStorage = SharedPreferencesLocalStorage(
22
persistSessionKey: uniqueKey,
23
);
0 commit comments