From 5e01d609cbacbc78b36b4840c21dcfffe66e677c Mon Sep 17 00:00:00 2001 From: Allison Ryan Date: Tue, 12 Apr 2022 08:12:54 -0500 Subject: [PATCH] test: animatronic is in forest --- test/game/components/flutter_forest_test.dart | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/game/components/flutter_forest_test.dart b/test/game/components/flutter_forest_test.dart index 82bf1046..e9e58985 100644 --- a/test/game/components/flutter_forest_test.dart +++ b/test/game/components/flutter_forest_test.dart @@ -39,6 +39,19 @@ void main() { }, ); + flameTester.test( + 'a DashAnimatronic', + (game) async { + final flutterForest = FlutterForest(); + await game.ensureAdd(flutterForest); + + expect( + flutterForest.firstChild(), + isNotNull, + ); + }, + ); + flameTester.test( 'a BigDashNestBumper', (game) async {