Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions shell/platform/embedder/tests/embedder_a11y_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ namespace testing {

using Embedder11yTest = testing::EmbedderTest;

// TODO(52372): De-flake and re-enable.
TEST_F(Embedder11yTest, DISABLED_A11yTreeIsConsistent) {
TEST_F(Embedder11yTest, A11yTreeIsConsistent) {
auto& context = GetEmbedderContext(EmbedderTestContextType::kOpenGLContext);

fml::AutoResetWaitableEvent latch;
Expand Down
4 changes: 2 additions & 2 deletions testing/run_all_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ std::optional<fml::TimeDelta> GetTestTimeoutFromArgs(int argc, char** argv) {

std::string timeout_seconds;
if (!command_line.GetOptionValue("timeout", &timeout_seconds)) {
// No timeout specified. Default to 30s.
return fml::TimeDelta::FromSeconds(30u);
// No timeout specified. Default to 120s.
return fml::TimeDelta::FromSeconds(120u);
}

const auto seconds = std::stoi(timeout_seconds);
Expand Down