From aedf46afc7ab6681f8d580f130d59e3addcc6ed8 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Thu, 13 Jun 2019 11:19:09 -0700 Subject: [PATCH] Disable flaky tests (#34419) --- packages/flutter/test/widgets/center_test.dart | 1 + packages/flutter/test/widgets/text_golden_test.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/flutter/test/widgets/center_test.dart b/packages/flutter/test/widgets/center_test.dart index dfbd0e54f0..059077e37c 100644 --- a/packages/flutter/test/widgets/center_test.dart +++ b/packages/flutter/test/widgets/center_test.dart @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +@TestOn('!chrome') // flaky on web import 'package:flutter_test/flutter_test.dart'; import 'package:flutter/widgets.dart'; diff --git a/packages/flutter/test/widgets/text_golden_test.dart b/packages/flutter/test/widgets/text_golden_test.dart index bdc0294a46..a1637759bf 100644 --- a/packages/flutter/test/widgets/text_golden_test.dart +++ b/packages/flutter/test/widgets/text_golden_test.dart @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +@TestOn('!chrome') // Flaky on web import 'package:flutter_test/flutter_test.dart'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart';