Files
Krow-workspace/apps/mobile/apps/client/test/smoke_test.dart
2026-02-12 23:21:25 -05:00

8 lines
127 B
Dart

import 'package:flutter_test/flutter_test.dart';
void main() {
test('client smoke test', () {
expect(2 + 2, 4);
});
}