Skip to content

Commit 47f2791

Browse files
committed
Merge branch 'main' of https://github.com/flutter/codelabs into flutter-3.33
2 parents 4ac26c1 + 1442a00 commit 47f2791

File tree

15 files changed

+17
-18
lines changed

15 files changed

+17
-18
lines changed

deeplink_cookbook/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies:
3434
# The following adds the Cupertino Icons font to your application.
3535
# Use with the CupertinoIcons class for iOS style icons.
3636
cupertino_icons: ^1.0.8
37-
go_router: ^15.1.2
37+
go_router: ^16.0.0
3838

3939
dev_dependencies:
4040
flutter_test:

flutter_ci_script_master.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ declare -a CODELABS=(
2828
"haiku_generator"
2929
"homescreen_codelab"
3030
"in_app_purchases"
31-
# TODO(DomesticMouse): Figure out how to run `flutter test`
32-
# "intro_flutter_gpu"
31+
"intro_flutter_gpu"
3332
"namer"
3433
"next-gen-ui"
3534
"testing_codelab"

intro_flutter_gpu/codelab_rebuild.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ steps:
274274
testWidgets('smoke test', (tester) async {
275275
// Build our app and trigger a frame.
276276
await tester.pumpWidget(const MainApp());
277-
});
277+
}, skip: true);
278278
}
279279
- name: Patch macos/Runner/Info.plist
280280
path: intro_flutter_gpu/macos/Runner/Info.plist
@@ -2197,7 +2197,7 @@ steps:
21972197
@override
21982198
bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
21992199
}
2200-
- name: Patch text/widget_test.dart
2200+
- name: Patch test/widget_test.dart
22012201
path: intro_flutter_gpu/test/widget_test.dart
22022202
patch-u: |
22032203
--- b/intro_flutter_gpu/step_12/test/widget_test.dart
@@ -2218,7 +2218,7 @@ steps:
22182218
+ await tester.pumpWidget(
22192219
+ MainApp(staticResourcesInitialized: Scene.initializeStaticResources()),
22202220
+ );
2221-
});
2221+
}, skip: true);
22222222
}
22232223
- name: Copy step_12
22242224
copydir:

intro_flutter_gpu/step_01/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_02/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_03/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_04/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_05/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_06/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

intro_flutter_gpu/step_07/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ void main() {
1010
testWidgets('smoke test', (tester) async {
1111
// Build our app and trigger a frame.
1212
await tester.pumpWidget(const MainApp());
13-
});
13+
}, skip: true); // See https://github.com/flutter/flutter/issues/171361
1414
}

0 commit comments

Comments
 (0)