We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9949fcf commit 666d9eaCopy full SHA for 666d9ea
tests/Config/ConfigTest.php
@@ -36,12 +36,3 @@
36
37
expect($tempDirectory->path())->toBe('/foo');
38
});
39
-
40
-it('merges the published config file with package config file and preserve published config values', function () {
41
- config()->set('backup.backup.destination', ['compression_method' => ZipArchive::CM_DEFLATE]);
42
43
- $config = Config::fromArray(config('backup'));
44
45
- expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class);
46
- expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFLATE);
47
-});
0 commit comments