diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-09-12 12:05:03 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-11-13 10:18:47 +0100 |
commit | 31b9fc9eaca2e16d7baef3ef7e4dfc12ba0ea45e (patch) | |
tree | baeb6e078ffed9a0ee5eb73f87156d82308d2651 /apps/theming/tests | |
parent | 8e61ad884738b7fe427c7e9c7451484a8ecfc0ac (diff) | |
download | nextcloud-server-31b9fc9eaca2e16d7baef3ef7e4dfc12ba0ea45e.tar.gz nextcloud-server-31b9fc9eaca2e16d7baef3ef7e4dfc12ba0ea45e.zip |
Theming: Generate favicon sizes to avoid resizing issues done by the browser
fixes #5193
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r-- | apps/theming/tests/IconBuilderTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/tests/IconBuilderTest.php b/apps/theming/tests/IconBuilderTest.php index f25f76a8180..b301fa0620d 100644 --- a/apps/theming/tests/IconBuilderTest.php +++ b/apps/theming/tests/IconBuilderTest.php @@ -71,6 +71,9 @@ class IconBuilderTest extends TestCase { if (count($checkImagick->queryFormats('SVG')) < 1) { $this->markTestSkipped('No SVG provider present.'); } + if (count($checkImagick->queryFormats('PNG')) < 1) { + $this->markTestSkipped('No PNG provider present.'); + } } public function dataRenderAppIcon() { |