Verified Commit 0abe4670 authored by Jess's avatar Jess
Browse files

Issue #3515661 by quietone, joaopauloscho, xjm, charlliequadros: Fix...

Issue #3515661 by quietone, joaopauloscho, xjm, charlliequadros: Fix 'DocComment.MissingShort' in FunctionalJavascript tests
parent 3a6a8be0
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
// cspell:ignore imageresize imageupload

/**
 * Provides a base class for testing CKEditor 5 image embedding and uploads.
 *
 * @internal
 */
abstract class ImageTestTestBase extends ImageTestBase {
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@
// cspell:ignore imageresize

/**
 * Provides a base class for testing CKEditor 5 image URL insertion.
 *
 * @internal
 */
abstract class ImageUrlTestBase extends ImageTestBase {
+2 −0
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
// cspell:ignore sourceediting

/**
 * Provides a base class for testing the source editing function.
 *
 * @internal
 */
abstract class SourceEditingTestBase extends CKEditor5TestBase {
+2 −1
Original line number Diff line number Diff line
@@ -25,8 +25,9 @@ class ConfigExportTest extends WebDriverTestBase {
  protected $defaultTheme = 'stark';

  /**
   * @var string
   * A prefix string used in naming the test blocks.
   *
   * @var string
   */
  protected string $blockNamePrefix = 'aaaaaa_config_export_test_block';

+6 −0
Original line number Diff line number Diff line
@@ -37,16 +37,22 @@ class ManageDisplayTest extends WebDriverTestBase {
  protected $defaultTheme = 'stark';

  /**
   * The content type.
   *
   * @var string
   */
  protected $type;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\entityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The display storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $displayStorage;
Loading