feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user

This commit is contained in:
2026-05-19 16:26:26 +03:00
parent 688d043dad
commit 3529c39b22
304 changed files with 18826 additions and 1176 deletions
+15
View File
@@ -0,0 +1,15 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:go_router/go_router.dart';
import '../lib/app.dart';
void main() {
testWidgets('App renders MaterialApp.router', (tester) async {
await tester.pumpWidget(const ProviderScope(child: VoIdeaApp()));
await tester.pumpAndSettle();
expect(find.byType(MaterialApp), findsOneWidget);
});
}