Commit 4c4c248c authored by Arthur Verschaeve's avatar Arthur Verschaeve

Fix JSHint warning in `tests/test.js`

parent c80c514f
......@@ -79,7 +79,9 @@ module.exports.todoMVCTest = function (frameworkName, baseUrl, speedMode, laxMod
(new webdriver.WebDriver.Logs(browser))
.get('browser')
.then(function (v) {
v && v.length && console.log(v);
if (v && v.length) {
console.log(v);
}
});
closeBrowser();
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment