mirror of
https://github.com/xvrh/lottie-flutter.git
synced 2025-08-06 16:39:36 +08:00
8 lines
194 B
Dart
8 lines
194 B
Dart
import 'dart:async';
|
|
import 'package:golden_toolkit/golden_toolkit.dart';
|
|
|
|
Future<void> testExecutable(FutureOr<void> Function() testMain) async {
|
|
await loadAppFonts();
|
|
return testMain();
|
|
}
|