From a50b054e1d81c0c6abee13212a04149011f5cc6c Mon Sep 17 00:00:00 2001 From: Pedro Martins Date: Mon, 27 Jan 2025 10:13:54 +0000 Subject: [PATCH] remove the `only()` from tests --- tests/Config/ConfigTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Config/ConfigTest.php b/tests/Config/ConfigTest.php index 97e611b4..a9e397c5 100644 --- a/tests/Config/ConfigTest.php +++ b/tests/Config/ConfigTest.php @@ -44,7 +44,7 @@ expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class); expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFAULT); -})->only(); +}); it('merges the published config file with package config file and preserve published config values', function () { config()->set('backup.backup.destination', ['compression_method' => ZipArchive::CM_DEFLATE]); @@ -53,4 +53,4 @@ expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class); expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFLATE); -})->only(); +});