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:
authorVincent Petry <vincent@nextcloud.com>2022-01-10 18:41:11 +0300
committerGitHub <noreply@github.com>2022-01-10 18:41:11 +0300
commit8954e512072f9c7246485994072f1361e8211fd1 (patch)
tree29bbff86d34250a3df1acaf6d48a25b3e15399d0 /apps/systemtags
parent6572f801023f3b6bed33c32aee4edc5c8e840ece (diff)
parent6aba3964d32e8e5589590a60b3d88ce36fd6f4a7 (diff)
Merge pull request #30567 from nextcloud/bugfix/noid/npm-ci-for-karma
Use npm ci when running JS tests
Diffstat (limited to 'apps/systemtags')
-rw-r--r--apps/systemtags/js/admin.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/systemtags/js/admin.js b/apps/systemtags/js/admin.js
index 22d17343228..2409cb488de 100644
--- a/apps/systemtags/js/admin.js
+++ b/apps/systemtags/js/admin.js
@@ -179,6 +179,8 @@
})();
window.addEventListener('DOMContentLoaded', function() {
- OCA.SystemTags.Admin.init();
+ if (!window.TESTING) {
+ OCA.SystemTags.Admin.init();
+ }
});