Zarkonnen / se-interpreter

Interpreter for Selenium Builder JSON scripts based on node.js and wd.
34 stars 31 forks source link

No error reporting when given a malformed config file #3

Closed Zarkonnen closed 10 years ago

Zarkonnen commented 11 years ago

Passing the following config file to the interpreter just causes it to run with zero test runs and no indication that anything's wrong.

{
"type":"interpreter-config",
"configurations":[
{
"settings": [
{
"driverOptions" "{
"host": "ondemand.saucelabs.com",
"port": 80
},
"browserOptions":{
"browserName":"firefox",
"username": "dhirajshinde1210",
"accessKey": "b0b27d7f-4446-4367-9176-af70abd46a5e"
}
}
],
"scripts":[
        "tests/*"
]
}
]
}

op