8000
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.
1 parent 0564db2 commit e5537a7Copy full SHA for e5537a7
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