13 lines
268 B
Dart
13 lines
268 B
Dart
import 'package:sky/widgets.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'widget_tester.dart';
|
|
|
|
void main() {
|
|
test('Can be placed in an infinte box', () {
|
|
testWidgets((WidgetTester tester) {
|
|
tester.pumpWidget(new Block([new Center()]));
|
|
});
|
|
});
|
|
}
|