We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9617510 commit cd5de52Copy full SHA for cd5de52
dwds/test/common/chrome_proxy_service_common.dart
@@ -2062,6 +2062,14 @@ void runTests({
2062
// should create new tests for hot reload within DWDS and remove this
2063
// test.
2064
expect(report.success, false);
2065
+ // Make sure that a notice was provided in the expected format.
2066
+ final notices = report.json?['notices'];
2067
+ expect(notices, isNotNull);
2068
+ final noticeList = (notices as List).cast<Map>();
2069
+ expect(noticeList, isNotEmpty);
2070
+ final message = noticeList[0]['message'];
2071
+ expect(message, isNotNull);
2072
+ expect(message is String && message.isNotEmpty, isTrue);
2073
});
2074
2075
test('setIsolatePauseMode', () async {
0 commit comments