8 lines
127 B
Dart
8 lines
127 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
test('client smoke test', () {
|
|
expect(2 + 2, 4);
|
|
});
|
|
}
|