@@ -477,47 +477,6 @@ void main() {
477477 expect(constructedEvent.eventData.length, 4);
478478 });
479479
480- test('Event.flutterWasmDryRun constructed no findings', () {
481- Event generateEventNoFindings() => Event.flutterWasmDryRun(
482- result: 'success',
483- exitCode: 123,
484- );
485-
486- final constructedEvent1 = generateEventNoFindings();
487-
488- expect(generateEventNoFindings, returnsNormally);
489- expect(constructedEvent1.eventName, DashEvent.flutterWasmDryRun);
490- expect(constructedEvent1.eventData['result'], 'success');
491- expect(constructedEvent1.eventData['exitCode'], 123);
492- expect(constructedEvent1.eventData.length, 2);
493- });
494- test('Event.flutterWasmDryRun constructed with findings', () {
495- Event generateEventNoFindings() => Event.flutterWasmDryRun(
496- result: 'success',
497- exitCode: 123,
498- );
499-
500- final constructedEvent1 = generateEventNoFindings();
501-
502- expect(generateEventNoFindings, returnsNormally);
503- expect(constructedEvent1.eventName, DashEvent.flutterWasmDryRun);
504- expect(constructedEvent1.eventData['result'], 'success');
505- expect(constructedEvent1.eventData['exitCode'], 123);
506- expect(constructedEvent1.eventData.length, 2);
507-
508- Event generateEventFindings() => Event.flutterWasmDryRun(
509- result: 'success', exitCode: 123, findingsSummary: '1,2,3');
510-
511- final constructedEvent2 = generateEventFindings();
512-
513- expect(generateEventFindings, returnsNormally);
514- expect(constructedEvent2.eventName, DashEvent.flutterWasmDryRun);
515- expect(constructedEvent2.eventData['result'], 'success');
516- expect(constructedEvent2.eventData['exitCode'], 123);
517- expect(constructedEvent2.eventData['findings'], '1,2,3');
518- expect(constructedEvent2.eventData.length, 3);
519- });
520-
521480 test('Event.flutterWasmDryRunPackage constructed', () {
522481 Event generateEvent() => Event.flutterWasmDryRunPackage(
523482 result: 'success',
0 commit comments