Files
Flutter_Shell/test/widget_test.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>(),
);
});
}