Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-08-16 22:39:55 +0300
committerszaimen <szaimen@e.mail.de>2021-08-24 12:42:04 +0300
commit0758e0258d5adfccdb7b71ef61916fb939a7bf48 (patch)
tree1ee0fcbe406a8c7087c5befb980916a07f71fe07 /apps/theming/tests
parent4f0101837a5a52de3673b16b0d1e472c520ac26c (diff)
improve webmanifest
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r--apps/theming/tests/Controller/ThemingControllerTest.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/theming/tests/Controller/ThemingControllerTest.php b/apps/theming/tests/Controller/ThemingControllerTest.php
index d07444f7c77..639574a5270 100644
--- a/apps/theming/tests/Controller/ThemingControllerTest.php
+++ b/apps/theming/tests/Controller/ThemingControllerTest.php
@@ -823,7 +823,11 @@ class ThemingControllerTest extends TestCase {
'sizes' => '16x16'
]
],
- 'display' => 'standalone'
+ 'display' => 'standalone',
+ 'short_name' => 'Nextcloud',
+ 'theme_color' => null,
+ 'background_color' => null,
+ 'description' => null
]);
$response->cacheFor(3600);
$this->assertEquals($response, $this->themingController->getManifest('core'));