From f421d07ace0e250926394b32a91d49e02061800f Mon Sep 17 00:00:00 2001 From: Kamil Date: Wed, 27 Mar 2024 16:47:11 +0100 Subject: [PATCH] #198 - test case class update --- environment/dev/app/Dockerfile | 2 +- tests/TestCase.php | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/environment/dev/app/Dockerfile b/environment/dev/app/Dockerfile index 775f9fda..a1de37fa 100644 --- a/environment/dev/app/Dockerfile +++ b/environment/dev/app/Dockerfile @@ -57,7 +57,7 @@ RUN apt-get update \ redis # For other versions check: https://pecl.php.net/package/xdebug -ARG XDEBUG_VERSION=3.2.2 +ARG XDEBUG_VERSION=3.3.1 ARG INSTALL_XDEBUG=true RUN if [ ${INSTALL_XDEBUG} = true ]; then \ diff --git a/tests/TestCase.php b/tests/TestCase.php index 53411164..412ebecf 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,5 +8,10 @@ abstract class TestCase extends BaseTestCase { - use CreatesApplication; + protected function setUp(): void + { + parent::setUp(); + + $this->withoutVite(); + } }