test: Enable all default apps

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/48210/head
Joas Schilling 5 months ago
parent b9984cb3ef
commit be0fbacfdf
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
  1. 18
      tests/enable_all.php

@ -15,13 +15,11 @@ function enableApp($app) {
}
}
enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('user_ldap');
enableApp('files_versions');
enableApp('provisioning_api');
enableApp('federation');
enableApp('federatedfilesharing');
enableApp('admin_audit');
enableApp('webhook_listeners');
foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) {
if ($file->isDot()) {
continue;
}
if (!file_exists($file->getPathname() . '/.git')) {
enableApp($file->getFilename());
}
}

Loading…
Cancel
Save