Skip to content

Commit 000f0c2

Browse files
committed
Update dependencies
1 parent 1f7cc89 commit 000f0c2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/validator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = function validate(test) {
22
const result = test.rawResult;
33
const isNegative = test.attrs.flags.negative || test.attrs.negative;
44
const ranToFinish = result.stdout.indexOf('test262/done') > -1;
5-
const desc = test.attrs.description.trim();
5+
const desc = (test.attrs.description || '').trim();
66

77
if(!isNegative) {
88
if (result.error !== null) {

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
},
1313
"dependencies": {
1414
"async": "^2.0.0-rc.6",
15+
"eshost": "^3.0.0",
1516
"glob": "~4.0.3",
1617
"rx": "^4.1.0",
18+
"test262-compiler": "^1.0.0",
1719
"yargs": "^4.7.1"
1820
},
1921
"author": "Brian Terlson",

0 commit comments

Comments
 (0)