diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js b/apps/files_sharing/js/dist/files_sharing_tab.js
index 724c903cd85794ee4bf8a98bba47b341a9e98caa..c7a7387958f4994551159cb97e3079dcb4cdcf5e 100644
Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js and b/apps/files_sharing/js/dist/files_sharing_tab.js differ
diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js.map b/apps/files_sharing/js/dist/files_sharing_tab.js.map
index 64acacdd900b7d0a1c1967bad9cccc58882a8910..40bda83585c5b42da95fe3843784e685dec71e54 100644
Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js.map and b/apps/files_sharing/js/dist/files_sharing_tab.js.map differ
diff --git a/apps/files_sharing/lib/AppInfo/Application.php b/apps/files_sharing/lib/AppInfo/Application.php
index 3cb3d87cfb254b319922fe14091ad9b6f1e71914..e5829389a46bcd46fdbba70fa2c7f014f7fd7c08 100644
--- a/apps/files_sharing/lib/AppInfo/Application.php
+++ b/apps/files_sharing/lib/AppInfo/Application.php
@@ -49,7 +49,6 @@ use OCP\AppFramework\Utility\IControllerMethodReflector;
 use OCP\Defaults;
 use OCP\EventDispatcher\IEventDispatcher;
 use OCP\Federation\ICloudIdManager;
-use OCP\IContainer;
 use OCP\Files\Config\IMountProviderCollection;
 use OCP\IContainer;
 use OCP\IGroup;
diff --git a/apps/files_sharing/tests/TestCase.php b/apps/files_sharing/tests/TestCase.php
index ce5ceb1f6428dde9583723c21a3e61a404f34acc..cc207429e7b873e90b5d42c0d0b357ae5ef65acc 100644
--- a/apps/files_sharing/tests/TestCase.php
+++ b/apps/files_sharing/tests/TestCase.php
@@ -71,9 +71,8 @@ abstract class TestCase extends \Test\TestCase {
 	public static function setUpBeforeClass(): void {
 		parent::setUpBeforeClass();
 
-		$application = new Application();
-		$application->registerMountProviders();
-
+		new Application();
+		
 		// reset backend
 		\OC_User::clearBackends();
 		\OC::$server->getGroupManager()->clearBackends();
diff --git a/apps/files_trashbin/tests/TrashbinTest.php b/apps/files_trashbin/tests/TrashbinTest.php
index 9e5b029d9dc33cadaa67a5a23900195375fc73d6..35a5a957186adf0d21f2bd7abe8a48f9c3ceeab6 100644
--- a/apps/files_trashbin/tests/TrashbinTest.php
+++ b/apps/files_trashbin/tests/TrashbinTest.php
@@ -28,6 +28,7 @@
  */
 
 use OCA\Files_Trashbin\Tests;
+use OCA\Files_Sharing\AppInfo\Application;
 
 /**
  * Class Test_Encryption
@@ -67,8 +68,9 @@ class TrashbinTest extends \Test\TestCase {
 		// clear share hooks
 		\OC_Hook::clear('OCP\\Share');
 		\OC::registerShareHooks();
-		$application = \OC::$server->query(\OCA\Files_Sharing\AppInfo\Application::class);
-		$application->registerMountProviders();
+
+		// init files sharing
+		new Application();
 
 		//disable encryption
 		\OC::$server->getAppManager()->disableApp('encryption');
diff --git a/apps/files_versions/tests/VersioningTest.php b/apps/files_versions/tests/VersioningTest.php
index 3f51f619629cff9923c952326fea3761a4b0e2a9..cc326b18928734a7a6627c90c5e37e4175b12de4 100644
--- a/apps/files_versions/tests/VersioningTest.php
+++ b/apps/files_versions/tests/VersioningTest.php
@@ -60,7 +60,6 @@ class VersioningTest extends \Test\TestCase {
 		parent::setUpBeforeClass();
 
 		$application = new \OCA\Files_Sharing\AppInfo\Application();
-		$application->registerMountProviders();
 
 		// create test user
 		self::loginHelper(self::TEST_VERSIONS_USER2, true);
diff --git a/tests/karma.config.js b/tests/karma.config.js
index fb460ad850d5217b0553671dcee2303c0eaec02c..06503bf9bf8b8b9816659816b26f2640d27ae915 100644
--- a/tests/karma.config.js
+++ b/tests/karma.config.js
@@ -53,10 +53,14 @@ module.exports = function(config) {
 					// only test these files, others are not ready and mess
 					// up with the global namespace/classes/state
 					'apps/files_sharing/js/app.js',
-					'apps/files_sharing/js/sharedfilelist.js',
 					'apps/files_sharing/js/dist/additionalScripts.js',
-					'apps/files_sharing/js/public.js',
+					'apps/files_sharing/js/dist/files_sharing_tab.js',
+					'apps/files_sharing/js/dist/files_sharing.js',
+					'apps/files_sharing/js/dist/main.js',
+					'apps/files_sharing/js/dist/sidebar.js',
 					'apps/files_sharing/js/files_drop.js',
+					'apps/files_sharing/js/public.js',
+					'apps/files_sharing/js/sharedfilelist.js',
 					'apps/files_sharing/js/templates.js',
 				],
 				testFiles: ['apps/files_sharing/tests/js/*.js']
diff --git a/tests/lib/Files/EtagTest.php b/tests/lib/Files/EtagTest.php
index acda220d01f12778d8b3274959119935a98dc88d..554812253f3117cbc04d94bd18803ef3b2cfd492 100644
--- a/tests/lib/Files/EtagTest.php
+++ b/tests/lib/Files/EtagTest.php
@@ -10,6 +10,7 @@ namespace Test\Files;
 
 use OC\Files\Filesystem;
 use OCP\Share;
+use OCA\Files_Sharing\AppInfo\Application;
 
 /**
  * Class EtagTest
@@ -32,8 +33,9 @@ class EtagTest extends \Test\TestCase {
 		parent::setUp();
 
 		\OC_Hook::clear('OC_Filesystem', 'setup');
-		$application = new \OCA\Files_Sharing\AppInfo\Application();
-		$application->registerMountProviders();
+		// init files sharing
+		new Application();
+		
 		\OC\Share\Share::registerBackend('file', 'OCA\Files_Sharing\ShareBackend\File');
 		\OC\Share\Share::registerBackend('folder', 'OCA\Files_Sharing\ShareBackend\Folder', 'file');