Initial commit

This commit is contained in:
2026-03-21 01:34:22 +01:00
parent 8ec17d5ed4
commit 6805f4a3f4
144 changed files with 7312 additions and 13 deletions

14
test/widget_test.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:busylight_buddy/main.dart';
void main() {
testWidgets('App smoke test — renders without crashing', (WidgetTester tester) async {
await tester.pumpWidget(
const ProviderScope(
child: BusylightApp(),
),
);
expect(find.text('BusyLight'), findsOneWidget);
});
}