Skip to content

Instantly share code, notes, and snippets.

@tomaszpolanski
Created April 5, 2021 13:30
Show Gist options
  • Save tomaszpolanski/d0641ab104b248610e08930040a32baa to your computer and use it in GitHub Desktop.
Save tomaszpolanski/d0641ab104b248610e08930040a32baa to your computer and use it in GitHub Desktop.
import 'package:integration_test/integration_test.dart';
import 'route_test.dart' as route;
import 'simple_test.dart' as simple;
import 'subfolder/sub_test.dart' as subfolder_sub;
import 'testing_test.dart' as testing;
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
route.main();
simple.main();
subfolder_sub.main();
testing.main();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment