Skip test which apply on different kernel configuration

This commit is contained in:
2023-08-30 14:31:37 +02:00
parent 6bedd673cd
commit 364a67b83a

View File

@@ -31,6 +31,7 @@ final class PersonControllerViewWithHiddenFieldsTest extends WebTestCase
protected function setUp(): void
{
/**
self::bootKernel(['environment' => 'test_with_hidden_fields']);
$this->em = self::$kernel->getContainer()
@@ -49,13 +50,16 @@ final class PersonControllerViewWithHiddenFieldsTest extends WebTestCase
$this->em->flush();
$this->viewUrl = '/en/person/' . $this->person->getId() . '/general';
*/
}
protected function tearDown(): void
{
/*
$this->refreshPerson();
$this->em->remove($this->person);
$this->em->flush();
*/
}
/**