@@ -152,10 +152,9 @@ class WebTestsSuite {
152
152
153
153
// This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
154
154
// These tests have been extremely flaky, so we are temporarily disabling them until we figure out how to make them more robust.
155
- // See https://github.com/flutter/flutter/issues/143834
156
- // () => _runWebE2eTest('text_editing_integration', buildMode: 'debug', renderer: 'canvaskit'),
157
- // () => _runWebE2eTest('text_editing_integration', buildMode: 'profile', renderer: 'html'),
158
- // () => _runWebE2eTest('text_editing_integration', buildMode: 'release', renderer: 'html'),
155
+ () => _runWebE2eTest ('text_editing_integration' , buildMode: 'debug' , renderer: 'canvaskit' ),
156
+ () => _runWebE2eTest ('text_editing_integration' , buildMode: 'profile' , renderer: 'html' ),
157
+ () => _runWebE2eTest ('text_editing_integration' , buildMode: 'release' , renderer: 'html' ),
159
158
160
159
// This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
161
160
() => _runWebE2eTest ('url_strategy_integration' , buildMode: 'debug' , renderer: 'html' ),
@@ -293,6 +292,11 @@ class WebTestsSuite {
293
292
bool expectWriteResponseFile = false ,
294
293
String expectResponseFileContent = '' ,
295
294
}) async {
295
+ // TODO(yjbanov): this is temporarily disabled due to https://github.com/flutter/flutter/issues/147731
296
+ if (buildMode == 'debug' && renderer == 'canvaskit' ) {
297
+ print ('SKIPPED: $target in debug CanvasKit mode due to https://github.com/flutter/flutter/issues/147731' );
298
+ return ;
299
+ }
296
300
printProgress ('${green }Running integration tests $target in $buildMode mode.$reset ' );
297
301
await runCommand (
298
302
flutter,
@@ -421,6 +425,11 @@ class WebTestsSuite {
421
425
/// The test is written using `package:integration_test` (despite the "e2e" in
422
426
/// the name, which is there for historic reasons).
423
427
Future <void > _runGalleryE2eWebTest (String buildMode, { bool canvasKit = false }) async {
428
+ // TODO(yjbanov): this is temporarily disabled due to https://github.com/flutter/flutter/issues/147731
429
+ if (buildMode == 'debug' && canvasKit) {
430
+ print ('SKIPPED: Gallery e2e web test in debug CanvasKit mode due to https://github.com/flutter/flutter/issues/147731' );
431
+ return ;
432
+ }
424
433
printProgress ('${green }Running flutter_gallery integration test in --$buildMode using ${canvasKit ? 'CanvasKit' : 'HTML' } renderer.$reset ' );
425
434
final String testAppDirectory = path.join (flutterRoot, 'dev' , 'integration_tests' , 'flutter_gallery' );
426
435
await runCommand (
0 commit comments