Hi, I'm trying to run through the Getting Started guide here: http://dalekjs.com/pages/getStarted.html I'm running on Mac 10.11.6 with recent npm, node, etc. Here's what I'm trying with errors report following command... ``` $ npm run browsertest > node-react-proto@0.0.3 browsertest /Users/eric/Code/JavaScript/node-react-proto > dalek browsertest/test-homepage.js -b chrome Running tests Running Browser: Google Chrome >> ERROR: Error: socket hang up >> ERROR: Error: socket hang up ``` Here's my test case... ``` module.exports = { 'Test homepage': function (test) { test .open('http://www.google.com/') .assert.title().to.contain('Prototype') .done(); } }; ``` The browser does pop up, but with 'data:,' in the URL bar and no pages loaded. Let me know if you need any additional info.