10 lines
255 B
Dart
10 lines
255 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:im_webview_app/main.dart';
|
|
|
|
void main() {
|
|
test('creates the WebView shell app widget', () {
|
|
expect(const ImWebViewApp(), isA<Widget>());
|
|
});
|
|
}
|