@@ -386,35 +386,23 @@ void testWithDwds({
386386 });
387387 });
388388
389- group (
390- 'hotRestart' ,
391- () {
392- setUp (() async {
393- setCurrentLogWriter (debug: provider.verbose);
394- });
395-
396- test ('emits HOT_RESTART event' , () async {
397- final hotRestart = context.getRegisteredServiceExtension (
398- 'hotRestart' ,
399- );
400- await context.recompile (fullRestart: true );
401- await expectEventDuring (
402- matchesEvent (DwdsEventKind .hotRestart, {
403- 'elapsedMilliseconds' : isNotNull,
404- }),
405- () => fakeClient.callServiceExtension (hotRestart! ),
406- );
407- });
408- },
409-
410- skip:
411- // Windows is only here to ensure the skip on the outer group gets
412- // applied.
413- // https://github.com/dart-lang/webdev/issues/1852
414- Platform .isWindows ||
415- // https://github.com/dart-lang/build/issues/4928
416- compilationMode == CompilationMode .buildDaemon,
417- );
389+ group ('hotRestart' , () {
390+ setUp (() async {
391+ setCurrentLogWriter (debug: provider.verbose);
392+ });
393+
394+ test ('emits HOT_RESTART event' , () async {
395+ final hotRestart = context.getRegisteredServiceExtension (
396+ 'hotRestart' ,
397+ );
398+ await expectEventDuring (
399+ matchesEvent (DwdsEventKind .hotRestart, {
400+ 'elapsedMilliseconds' : isNotNull,
401+ }),
402+ () => fakeClient.callServiceExtension (hotRestart! ),
403+ );
404+ });
405+ });
418406
419407 group ('resume' , () {
420408 late VmServiceInterface service;
0 commit comments