@@ -363,37 +363,37 @@ export class MutationTestReportAppComponent extends RealTimeElement {
363363 return when (
364364 this . context . result ?? this . errorMessage ,
365365 ( ) =>
366- html `< mte-file-picker .rootModel =" ${ this . rootModel } " > </ mte-file-picker >
366+ html `< mte-file-picker .rootModel =${ this . rootModel } > </ mte-file-picker >
367367 < div class ="container space-y-4 bg-white pb-4 font-sans text-gray-800 transition-colors motion-safe:transition-max-width ">
368368 ${ this . #renderErrorMessage( ) }
369- < mte-theme-switch @theme-switch =" ${ this . themeSwitch } " class ="sticky top-offset z-20 float-right mb-0 pt-7 " .theme =" ${ this . theme } " >
369+ < mte-theme-switch @theme-switch =${ this . themeSwitch } class ="sticky top-offset z-20 float-right mb-0 pt-7" .theme=${ this . theme } >
370370 </ mte-theme-switch >
371371 ${ this . #renderTitle( ) } ${ this . #renderTabs( ) }
372372 < mte-breadcrumb
373- @mte-file-picker-open =" ${ ( ) => this . filePicker . open ( ) } "
374- .view =" ${ this . context . view } "
375- .path =" ${ this . context . path } "
373+ @mte-file-picker-open =${ ( ) => this . filePicker . open ( ) }
374+ .view =${ this . context . view }
375+ .path=${ this . context . path }
376376 > </ mte-breadcrumb >
377377 < mte-result-status-bar
378- detected =" ${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . totalDetected ) } "
379- no-coverage =" ${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . noCoverage ) } "
380- pending =" ${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . pending ) } "
381- survived =" ${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . survived ) } "
382- total =" ${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . totalValid ) } "
378+ detected =${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . totalDetected ) }
379+ no-coverage =${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . noCoverage ) }
380+ pending=${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . pending ) }
381+ survived=${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . survived ) }
382+ total=${ ifDefined ( this . rootModel ?. systemUnderTestMetrics . metrics . totalValid ) }
383383 > </ mte-result-status-bar >
384384 ${ when (
385385 this . context . view === 'mutant' && this . context . result ,
386386 ( ) =>
387387 html `< mte-mutant-view
388388 id ="mte-mutant-view "
389- .result =" ${ this . context . result } "
390- .thresholds =" ${ this . report ! . thresholds } "
391- .path =" ${ this . path } "
389+ .result =${ this . context . result }
390+ .thresholds =${ this . report ! . thresholds }
391+ .path=${ this . path }
392392 > </ mte-mutant-view > ` ,
393393 ) }
394394 ${ when (
395395 this . context . view === 'test' && this . context . result ,
396- ( ) => html `< mte-test-view id ="mte-test-view " .result =" ${ this . context . result } " .path =" ${ this . path } " > </ mte-test-view > ` ,
396+ ( ) => html `< mte-test-view id ="mte-test-view " .result =${ this . context . result } .path =${ this . path } > </ mte-test-view > ` ,
397397 ) }
398398 </ div > ` ,
399399 ) ;
@@ -422,8 +422,8 @@ export class MutationTestReportAppComponent extends RealTimeElement {
422422 < a
423423 class ="inline-block rounded-t-lg border-b-2 border-transparent p-4 transition-colors hover:border-gray-300 hover:bg-gray-200 hover:text-gray-700 aria-selected:border-b-[3px] aria-selected:border-solid aria-selected:border-primary-700 aria-selected:text-primary-on "
424424 role ="tab "
425- href =" ${ toAbsoluteUrl ( type ) } "
426- aria-selected =" ${ isActive } "
425+ href =${ toAbsoluteUrl ( type ) }
426+ aria-selected =${ isActive }
427427 aria-controls="mte-${ type } -view"
428428 > ${ text } </ a
429429 >
0 commit comments