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

Issue #3484845 by mstrelan, acbramley: [random test failure] ImageUrlProviderTest::testResize

(cherry picked from commit 5dad6c95)
parent fda5ea40
5 merge requests!12024Fix: DocBlock comment for return value of Drupal\Core\Database\Connection::transactionManager(),!11974Draft: Issue #3495165 by catch, joeyroth, berdir, texas-bronius: Better warning...,!11934Issue #3520997: DefaultLazyPluginCollection unnecessarily instantiates plugins when sorting collection,!11887Issue #3520065: The migrate Row class API is incomplete,!11636Draft: Issue #3515643 by macsim: fieldNameExists method is inconsistent
Pipeline #453842 passed
Pipeline: drupal

#453843

    ...@@ -281,8 +281,8 @@ public function testResize(bool $is_resize_enabled): void { ...@@ -281,8 +281,8 @@ public function testResize(bool $is_resize_enabled): void {
    $this->drupalGet('node/add'); $this->drupalGet('node/add');
    $page->fillField('title[0][value]', 'My test content'); $page->fillField('title[0][value]', 'My test content');
    $this->addImage(); $this->addImage();
    $image_figure = $assert_session->waitForElementVisible('css', 'figure'); $selector = $is_resize_enabled ? 'figure.ck-widget_with-resizer' : 'figure:not(.ck-widget_with-resizer)';
    $this->assertSame($is_resize_enabled, $image_figure->hasClass('ck-widget_with-resizer')); $this->assertNotEmpty($assert_session->waitForElementVisible('css', $selector));
    } }
    /** /**
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment