whisper-money/tests/TestCase.php

16 lines
262 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
config(['subscriptions.enabled' => false]);
}
}