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 1f7cc89 commit 000f0c2Copy full SHA for 000f0c2
lib/validator.js
@@ -2,7 +2,7 @@ module.exports = function validate(test) {
2
const result = test.rawResult;
3
const isNegative = test.attrs.flags.negative || test.attrs.negative;
4
const ranToFinish = result.stdout.indexOf('test262/done') > -1;
5
- const desc = test.attrs.description.trim();
+ const desc = (test.attrs.description || '').trim();
6
7
if(!isNegative) {
8
if (result.error !== null) {
package.json
@@ -12,8 +12,10 @@
12
},
13
"dependencies": {
14
"async": "^2.0.0-rc.6",
15
+ "eshost": "^3.0.0",
16
"glob": "~4.0.3",
17
"rx": "^4.1.0",
18
+ "test262-compiler": "^1.0.0",
19
"yargs": "^4.7.1"
20
21
"author": "Brian Terlson",
0 commit comments