From 873cf51763bbb50ad21050388e2e82bc49046f5e Mon Sep 17 00:00:00 2001 From: Camille Simon <43054281+camsim99@users.noreply.github.com> Date: Wed, 4 Jan 2023 17:46:35 -0800 Subject: [PATCH] [Android] Increase timeout duration for spell check integration test (#117989) * Add timeout * Add library directive * Add comment, remove testing only changes --- .../spell_check/integration_test/integration_test.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev/integration_tests/spell_check/integration_test/integration_test.dart b/dev/integration_tests/spell_check/integration_test/integration_test.dart index 28d81a2cc1ef..56ff5b8d799c 100644 --- a/dev/integration_tests/spell_check/integration_test/integration_test.dart +++ b/dev/integration_tests/spell_check/integration_test/integration_test.dart @@ -2,6 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +// TODO(camsim99): Revert this timeout change after effects are investigated. +@Timeout(Duration(seconds: 60)) +library; + import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart';