Skip to content
Snippets Groups Projects
Commit b53484ab authored by catch's avatar catch
Browse files

Issue #3479160 by longwave, catch, fjgarlin, nod_: 11.0.x yarn dependencies have mushroomed

(cherry picked from commit 85861056)
parent 059150ef
No related branches found
No related tags found
8 merge requests!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #303704 passed with warnings
Pipeline: drupal

#303751

    Pipeline: drupal

    #303741

      Pipeline: drupal

      #303736

        +6
        <?php
        declare(strict_types=1);
        namespace Drupal\Tests\ckeditor5\Unit;
        use Drupal\Tests\UnitTestCase;
        /**
        * @group ckeditor5
        * @internal
        */
        class VersionTest extends UnitTestCase {
        /**
        * Ensure that CKEditor5 versions are aligned.
        */
        public function testVersionAlignment(): void {
        $package_json = json_decode(file_get_contents(__DIR__ . '/../../../../../package.json'), TRUE);
        $ckeditor_dependencies = array_filter($package_json['devDependencies'], fn ($key) => str_starts_with($key, '@ckeditor/ckeditor5-'), ARRAY_FILTER_USE_KEY);
        $this->assertCount(1, array_unique($ckeditor_dependencies));
        }
        }
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment