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 6f593e9 commit fbaa772Copy full SHA for fbaa772
tests/Feature/OptionsTest.php
@@ -9,7 +9,16 @@
9
beforeEach(function () {
10
Cache::flush();
11
Storage::fake(config()->string('image-transform-url.cache.disk'));
12
-});
+})->with([
13
+ function () {
14
+ config()->set('image.driver', \Intervention\Image\Drivers\Gd\Driver::class);
15
+ return 'gd';
16
+ },
17
18
+ config()->set('image.driver', \Intervention\Image\Drivers\Imagick\Driver::class);
19
+ return 'imagick';
20
+ }
21
+]);
22
23
it('can process the height option', function () {
24
/** @var TestCase $this */
0 commit comments