From 9c5a45135d540285b2a641231db29195a768f431 Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Wed, 13 Nov 2024 02:02:17 -0500 Subject: [PATCH] optimize:clear before each test --- tests/Command/CacheTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Command/CacheTest.php b/tests/Command/CacheTest.php index 4881fd6..4725a6a 100644 --- a/tests/Command/CacheTest.php +++ b/tests/Command/CacheTest.php @@ -9,6 +9,8 @@ config(['cache.default' => 'file']); + $this->artisan('optimize:clear')->execute(); + DomainCache::clear(); });