diff --git a/tests/Output/QRImagickTest.php b/tests/Output/QRImagickTest.php index 1184db3f5..728a45ff6 100644 --- a/tests/Output/QRImagickTest.php +++ b/tests/Output/QRImagickTest.php @@ -18,6 +18,12 @@ class QRImagickTest extends QROutputTestAbstract{ protected $FQCN = QRImagick::class; + public function setUp():void{ + if(!extension_loaded('imagick')){ + $this->markTestSkipped('ext-imagick not loaded'); + } + } + public function testImageOutput(){ $type = QRCode::OUTPUT_IMAGICK;