mirror of
https://github.com/foss42/apidash.git
synced 2025-06-05 01:46:21 +08:00
17 lines
516 B
Dart
17 lines
516 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:apidash/widgets/markdown.dart';
|
|
|
|
void main() {
|
|
testWidgets('Testing CustomMarkdown', (tester) async {
|
|
const markdown = CustomMarkdown(data: """Is a markdown ~`star on github`~
|
|
|
|
#br
|
|
#br
|
|
|
|
~`github repo`~ ~`Discord Server`~""");
|
|
await tester.pumpWidget(markdown);
|
|
//expectTextStrings(tester.allWidgets, <String>['Data1']);
|
|
}, skip: true);
|
|
}
|