We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b0801 commit c17d795Copy full SHA for c17d795
.github/workflows/analyze.yml
@@ -10,6 +10,8 @@ jobs:
10
- uses: subosito/flutter-action@v1
11
with:
12
channel: stable
13
+ - name: Print flutter version
14
+ run: flutter --version
15
- name: Install pub dependencies
16
run: |
17
for d in `pwd`/packages/*/; do
packages/integration_test/example/integration_test/example_test.dart
@@ -18,8 +18,7 @@ import 'package:integration_test_example/main.dart' as app;
18
19
void main() {
20
final IntegrationTestWidgetsFlutterBinding binding =
21
- IntegrationTestWidgetsFlutterBinding.ensureInitialized()
22
- as IntegrationTestWidgetsFlutterBinding;
+ IntegrationTestWidgetsFlutterBinding.ensureInitialized();
23
testWidgets('verify text', (WidgetTester tester) async {
24
// Build our app and trigger a frame.
25
app.main();
0 commit comments