diff --git a/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php b/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php index 8fae5b9..91e3fc5 100644 --- a/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php +++ b/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php @@ -15,6 +15,14 @@ class ArticleRepositoryTest extends EntityKernelTestBase { 'my_module', ]; + protected function setUp() { + parent::setUp(); + + $this->installConfig([ + 'filter', + ]); + } + /** @test */ public function nodes_that_are_not_articles_are_not_returned() { $this->createNode(['type' => 'article'])->save();