- Fixed test file import paths to point to correct Bloc file locations - Fixed Bloc file import paths for models (../../../models/models.dart) - Added explicit type annotations to resolve null safety warnings - Fixed null safety issues in wishlist_bloc_test.dart - All 70 tests now passing
10 lines
119 B
Dart
10 lines
119 B
Dart
// App screen enum
|
|
enum AppScreen {
|
|
library,
|
|
categories,
|
|
wishlist,
|
|
settings,
|
|
details,
|
|
addBook,
|
|
scanner,
|
|
} |