Skip to content

Commit ce1750a

Browse files
authored
Output of variables is more verbose, with type
1 parent c856a03 commit ce1750a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UnitTesting/UnitTesting.gs

+2-2
Original file line numberDiff line numberDiff line change
@@ -926,9 +926,9 @@ function Package (config) {
926926
key = String(idx);
927927
idx += 1;
928928
}
929-
var value = defaultTo('', lookup(args, key.split('.')));
929+
var value = lookup(args, key.split('.'));
930930
if (xf == null) {
931-
return value;
931+
return '<' + value + '> (' + typeof value + ')';
932932
} else if (Object.prototype.hasOwnProperty.call({}, xf)) {
933933
return config.transformers[xf](value);
934934
} else {

0 commit comments

Comments
 (0)