Files
apidash/test/widgets/window_caption_test.dart
2024-01-09 08:25:22 +05:30

20 lines
470 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:apidash/widgets/window_caption.dart';
void main() {
testWidgets('Testing for Window caption', (tester) async {
await tester.pumpWidget(
const MaterialApp(
title: 'Window caption',
home: Scaffold(
body: WindowCaption(),
),
),
);
final wd = find.byType(GestureDetector);
expect(wd, findsAny);
});
}