Do not print deprecation warnings during testing
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
78e1f22893
commit
5848c31fa2
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -117,7 +117,9 @@ export default {
|
|||
* @returns {string} timestamp formatted as requested
|
||||
*/
|
||||
formatDate(timestamp, format) {
|
||||
console.warn('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
|
||||
if (window.TESTING === undefined) {
|
||||
console.warn('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
|
||||
}
|
||||
format = format || 'LLL'
|
||||
return moment(timestamp).format(format)
|
||||
},
|
||||
|
@ -127,7 +129,9 @@ export default {
|
|||
* @returns {string} human readable difference from now
|
||||
*/
|
||||
relativeModifiedDate(timestamp) {
|
||||
console.warn('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
|
||||
if (window.TESTING === undefined) {
|
||||
console.warn('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
|
||||
}
|
||||
const diff = moment().diff(moment(timestamp))
|
||||
if (diff >= 0 && diff < 45000) {
|
||||
return t('core', 'seconds ago')
|
||||
|
|
|
@ -25,11 +25,15 @@ $.prototype.tooltip = (function(tooltip) {
|
|||
return tooltip.call(this, config)
|
||||
} catch (ex) {
|
||||
if (ex instanceof TypeError && config === 'destroy') {
|
||||
console.error('Deprecated call $.tooltip(\'destroy\') has been deprecated and should be removed')
|
||||
if (window.TESTING === undefined) {
|
||||
console.error('Deprecated call $.tooltip(\'destroy\') has been deprecated and should be removed')
|
||||
}
|
||||
return tooltip.call(this, 'dispose')
|
||||
}
|
||||
if (ex instanceof TypeError && config === 'fixTitle') {
|
||||
console.error('Deprecated call $.tooltip(\'fixTitle\') has been deprecated and should be removed')
|
||||
if (window.TESTING === undefined) {
|
||||
console.error('Deprecated call $.tooltip(\'fixTitle\') has been deprecated and should be removed')
|
||||
}
|
||||
return tooltip.call(this, '_fixTitle')
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue