13 lines
311 B
Dart
13 lines
311 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(shellBranding: ShellBranding.fallback),
|
|
isA<Widget>(),
|
|
);
|
|
});
|
|
}
|