| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
@sche...@google.com that test failure happens because the test is no longer _adding_ a dart:ui library (see https://github.com/dart-lang/sdk/blob/main/pkg/analyzer/test/dart/sdk/build_sdk_summary_test.dart#L36).
Do you have a suggestion on what to do with this test now? Should I change it to add a fictional 'dart:foo' or something?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
@sche...@google.com that test failure happens because the test is no longer _adding_ a dart:ui library (see https://github.com/dart-lang/sdk/blob/main/pkg/analyzer/test/dart/sdk/build_sdk_summary_test.dart#L36).
Do you have a suggestion on what to do with this test now? Should I change it to add a fictional 'dart:foo' or something?
It is easy to update the test to make it pass:
```
expect(dartUi.getClass('Color'), isNotNull);
expect(dartUi.getEnum('FontStyle'), isNotNull);
```
However maybe adding `dart:ui` unconditionally is not correct. It is not present in Dart SDK by default, and is added like the test does: via `sky_engine`. So, I think we would lose some test coverage with this change.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |