By admin , 19 November, 2025 Run Drupal Gitlab CI locally Install gitlab-ci-localAdd alias Tags gitlab ci-cd phpunit
By admin , 11 November, 2025 Hide comment field from node teasers in functional tests /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_form_display */ $entity_form_display = \Drupal::service('entity_display.repository'); $display = $entity_form_display->getViewDisplay('node', 'blog', 'teaser'); $display->removeComponent('comment_forum'); $display->save(); Tags comment field phpunit
By admin , 17 March, 2025 Do not execute code from cli if it's not phpunit test if (PHP_SAPI === 'cli' && !defined('PHPUNIT_COMPOSER_INSTALL')) { return; } Tags phpunit
By admin , 17 January, 2025 Phpunit: explain drupal deprecations Just add--display-phpunit-deprecations Tags phpunit
By admin , 21 August, 2023 Phpunit make screenshot $this->createScreenshot(\Drupal::root() . '/sites/simpletest/screenshot.jpg'); $this->assertFileExists(\Drupal::root() . '/sites/simpletest/screenshot.jpg'); Tags tests phpunit