diff --git a/public/testem/decycle.js b/public/testem/decycle.js index be19a7f01..c51e941fa 100644 --- a/public/testem/decycle.js +++ b/public/testem/decycle.js @@ -49,7 +49,7 @@ function decycle(object, maxDepth) { maxDepth = maxDepth || 5; return (function derez(value, path, depth) { if (depth > maxDepth) { - return 'Max depth.'; + return 'Decycle max depth reached at ' + maxDepth + '. You may override the default by setting "client_decycle_depth" in your testem config.'; } // The derez recurses through the object, producing the deep copy.