Skip to content

Commit

Permalink
#198 - test case class update
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilpiech97 committed Mar 27, 2024
1 parent 7fbb148 commit f421d07
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion environment/dev/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
7 changes: 6 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,10 @@

abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
protected function setUp(): void
{
parent::setUp();

$this->withoutVite();
}
}

0 comments on commit f421d07

Please sign in to comment.