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 bc818e2 commit 410cdc3Copy full SHA for 410cdc3
dwds/test/common/chrome_proxy_service_common.dart
@@ -2056,7 +2056,12 @@ void runTests({
2056
2057
test('reloadSources', () async {
2058
final service = context.service;
2059
- await expectLater(service.reloadSources(''), throwsRPCError);
+ final report = await service.reloadSources('');
2060
+ // TODO(srujzs): This naturally fails regardless of the module format
2061
+ // because we didn't set up prerequisite state (the reload scripts). We
2062
+ // should create new tests for hot reload within DWDS and remove this
2063
+ // test.
2064
+ expect(report.success, false);
2065
});
2066
2067
test('setIsolatePauseMode', () async {
0 commit comments