-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(cat-voices): Add running all test files (#1449)
- Loading branch information
Showing
3 changed files
with
127 additions
and
107 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
catalyst_voices/apps/voices/integration_test/all_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'package:catalyst_voices/configs/bootstrap.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
import 'package:integration_test/integration_test.dart'; | ||
|
||
import 'app_test.dart' as app_test; | ||
import 'onboarding_test.dart' as onboarding_test; | ||
|
||
void main() async { | ||
IntegrationTestWidgetsFlutterBinding.ensureInitialized(); | ||
|
||
setUpAll(() async { | ||
await bootstrap(router: buildAppRouter()); | ||
}); | ||
|
||
app_test.main(); | ||
onboarding_test.main(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters