Skip to content

Commit

Permalink
TASK: Skip CropImageAdjustmentTest w/o ext-gd
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns committed Dec 20, 2019
1 parent c73d364 commit fd8e72d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
*/
class CropImageAdjustmentTest extends UnitTestCase
{
public function setUp()
{
parent::setUp();
if (!extension_loaded('gd')) {
self::markTestSkipped('ext-gd is not available, skipping test');
}
}

/**
* @test
*/
Expand Down

0 comments on commit fd8e72d

Please sign in to comment.