Re-enable Flutter customer testing once `inspector_v2/inspector_integration_test.dart` is updated
screenshot tests expand and collapse implementation widgets in inspector_v2/inspector_integration_test.dart is blocking https://github.com/flutter/flutter/pull/169229 from landing as it's using the number of widgets in the tree to find the correct button to select:
// Expand the hidden group that contains the HeroControllerScope:
final expandButton = findExpandCollapseButtonForNode(
nodeDescription: '71 more widgets...', // This needs to be updated to 72
isExpand: true,
);
These tests ideally should be using keys to select specific nodes, but in the meantime, I'm going to disable DevTools customer testing until the above PR lands.
@elliette
Note: We will need to re-enable the golden checks (disabled in https://github.com/flutter/devtools/pull/9226) and update the goldens once https://github.com/flutter/flutter/pull/169229 lands and the Flutter candidate in DevTools has been updated.