Making WordPress.org


Ignore:
Timestamp:
09/18/2024 02:32:35 AM (4 months ago)
Author:
dd32
Message:

Make: PHPUnit Test Reporter: Update to v0.2 from GitHub:
https://github.com/WordPress/phpunit-test-reporter/releases/tag/v0.2.0

Props desrosj.
Fixes #7777.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php

    r10346 r14061  
    2525        )
    2626    );
    27     if ( ! empty( $user->user_url ) ) {
    28         $host .= '</a>';
    29     }
    30     if ( ! empty( $user->user_url ) ) {
    31         $host .= '<a target="_blank" rel="nofollow" href="' . esc_url( $user->user_url ) . '">';
    32     }
    3327    $host .= $user->display_name;
    3428    if ( ! empty( $user->user_url ) ) {
     
    5448        <td><strong>Host</strong></td>
    5549        <td><?php echo wp_kses_post( $host ); ?></td>
     50    </tr>
     51    <tr>
     52        <td><strong>Test Date</strong></td>
     53        <td>
     54            <?php the_date(); ?>
     55            <?php the_time(); ?>
     56        </td>
     57    </tr>
     58    <tr>
     59        <td><strong>Execution Time</strong></td>
     60        <td>
     61            <?php echo esc_html( Display::get_display_time( $report->ID ) ); ?>
     62        </td>
     63    </tr>
     64    <tr>
     65        <td><strong>Environment Name</strong></td>
     66        <td>
     67            <?php echo esc_html( Display::get_display_environment_name( $report->ID ) ); ?>
     68        </td>
    5669    </tr>
    5770    <tr>
Note: See TracChangeset for help on using the changeset viewer.