10 lines
290 B
Dart
10 lines
290 B
Dart
import 'dart:async';
|
|
|
|
import 'package:block_seasons/ui/widgets/season_background.dart';
|
|
|
|
Future<void> testExecutable(FutureOr<void> Function() testMain) async {
|
|
// Looping ambience animations never settle under pumpAndSettle.
|
|
debugDisableLoopingAnimations = true;
|
|
await testMain();
|
|
}
|