Skip to content

Commit

Permalink
Fix readme instructions...
Browse files Browse the repository at this point in the history
`npm install --dev` is totally wrong. `npm install` will install
all packages from devDependencies, the --dev flag (misleadingly)
recurses into every dependency and installs THOSE devDependencies.
  • Loading branch information
keithamus committed Mar 2, 2012
1 parent a276645 commit 6ff6517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ First you need to pre-heat the VM, by turning it on and loading selenium server.
Make sure you have the host-name set in ./features/support/testproperties.json Make sure you have the host-name set in ./features/support/testproperties.json
to the IP address of your VM (or just 127.0.0.1 if you're running locally). to the IP address of your VM (or just 127.0.0.1 if you're running locally).


Also prepare your environment by running `npm install --dev`. If you're feeling Also prepare your environment by running `npm install`. If you're feeling
brave you can also install the dependencies globally, which helps with Cucumber brave you can also install the dependencies globally, which helps with Cucumber
as it installs a bin in your $PATH. as it installs a bin in your $PATH.


Expand Down

0 comments on commit 6ff6517

Please sign in to comment.