
Now that we've ported all the widget tests to fn3, we don't need a separate fn3 directory.
14 lines
265 B
Dart
14 lines
265 B
Dart
import 'package:sky/src/fn3.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'widget_tester.dart';
|
|
|
|
void main() {
|
|
test('Can be placed in an infinte box', () {
|
|
WidgetTester tester = new WidgetTester();
|
|
|
|
tester.pumpFrame(new Block([new Center()]));
|
|
});
|
|
|
|
}
|