We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0564db2 + e5537a7 commit f3c5a8fCopy full SHA for f3c5a8f
lib/config.js
@@ -65,8 +65,8 @@ exports.config = function(config) {
65
if (typeof(config['test_server']) === 'undefined') {
66
this.test_path = config.test_path;
67
if (Object.prototype.toString.call(this.test_path) === '[object Array]') {
68
- this.test_path.forEach(function(path) {
69
- path = formatPath(path);
+ this.test_path.forEach(function(path, index, test_path_array) {
+ test_path_array[index] = formatPath(path);
70
});
71
72
} else {
0 commit comments