xolvio / meteor-rtd-example-project

A template project to use for creating a meteor app with unit and webdriver testing
91 stars 27 forks source link

problem starting up #29

Closed ryw closed 10 years ago

ryw commented 10 years ago

Trying to test out RTD, followed instructions from README, but when I run grunt, test/acceptance/leaderboard.spec.js errors on line 9.

Fatal error: Error: Cannot find module '../rtd/node_modules/selenium-webdriver'

https://github.com/xolvio/meteor-rtd-example-project/blob/master/test/acceptance/leaderboard.spec.js#L9

Here are the contents of my node_modules directory within rtd directory... no selenium-webdriver:

freeport growl grunt grunt-bg-shell grunt-contrib-coffee grunt-contrib-jshint grunt-contrib-watch grunt-cucumber grunt-exec grunt-zip hash_file karma-chrome-launcher karma-coffee-preprocessor karma-coverage karma-firefox-launcher karma-html2js-preprocessor karma-jasmine karma-junit-reporter karma-phantomjs-launcher karma-requirejs karma-script-launcher libnotify request requirejs

Thoughts?

xolvio commented 10 years ago

Hi. It looks like webdriver didn't install. It's in the packages.json so when you do npm install is should be downloaded. Try to do npm install inside the RTD directory and try again

ryw commented 10 years ago

thanks — this solved my issue.