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