We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
spatie
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
only()
1 parent c0ae725 commit 3072683Copy full SHA for 3072683
tests/Config/ConfigTest.php
@@ -44,7 +44,7 @@
44
45
expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class);
46
expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFAULT);
47
-})->only();
+});
48
49
it('merges the published config file with package config file and preserve published config values', function () {
50
config()->set('backup.backup.destination', ['compression_method' => ZipArchive::CM_DEFLATE]);
@@ -53,4 +53,4 @@
53
54
55
expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFLATE);
56
0 commit comments