Skip to content

Commit afad5e9

Browse files
author
Sunny Gurnani
committedOct 1, 2019
Fixed keyString
1 parent 5b8ed79 commit afad5e9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎lib/specs.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,14 @@ function specsRunner(specs, reporter, callback, err, data) {
138138
var filteredData = arrData.find(function (item) {
139139
var regex = new RegExp(find.pattern);
140140
return regex.test(item[find.key]);
141-
});
142-
var keyString = find.key + "." + filteredData[find.key];
141+
});
143142
if (filteredData) {
144-
path.push(keyString)
143+
path.push(find.key + "." + filteredData[find.key]);
145144
traverse(find.spec, filteredData);
146145
path.pop();
147-
} else {
146+
} else if (find.required) {
148147
tests.push({
149-
text: path.join('.') + "." + keyString,
148+
text: path.join('.') + "." + find.key + ".match(" + find.pattern + ")",
150149
result: new Error('not found')
151150
});
152151
}

0 commit comments

Comments
 (0)
Please sign in to comment.