mirror of
https://github.com/foss42/apidash.git
synced 2025-12-03 19:39:25 +08:00
9 lines
195 B
Dart
9 lines
195 B
Dart
import 'dart:async';
|
|
|
|
import 'package:golden_toolkit/golden_toolkit.dart';
|
|
|
|
Future<void> testExecutable(FutureOr<void> Function() testMain) async {
|
|
await loadAppFonts();
|
|
return testMain();
|
|
}
|