Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Formatting
  • Loading branch information
ramonjd authored and andrewserong committed Sep 16, 2022
commit 688695c8f7f405561ceaa6efe7970ee5c811d7df
7 changes: 4 additions & 3 deletions tests/phpunit/tests/script-loader.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

/**
* Test functions and classes for widgets and sidebars.
* Tests functions and classes for widgets and sidebars.
*
* @group script-loader
*/
class Tests_Script_Loader extends WP_UnitTestCase {
/**
* Clean up global scope.
* Cleans up global scope.
*
* @global WP_Scripts $wp_scripts
* @global WP_Styles $wp_styles
Expand All @@ -21,6 +21,7 @@ public function clean_up_global_scope() {
* Tests that stored CSS is enqueued.
*
* @ticket 56467
*
* @covers ::wp_enqueue_stored_styles
*/
public function test_should_enqueue_stored_styles() {
Expand All @@ -35,7 +36,7 @@ public function test_should_enqueue_stored_styles() {
),
);

// Enqueue a block supports (core styles).
// Enqueues a block supports (core styles).
wp_style_engine_get_stylesheet_from_css_rules(
$core_styles_to_enqueue,
array(
Expand Down