angularjs - Yeoman 'grunt test' fails on clean project with 'port already in use' -
with:
- mac os 10.8.4
- node 0.10.12
- npm 1.3.1
- grunt-cli 0.1.9
- yo 1.0.0-rc.1
- bower 0.9.2
- generator-angular@0.3.0
i encounter following error clean yo angular
project, followed grunt server
grunt test
:
running "connect:test" (connect) task fatal error: port 9000 in use process.
i'm new yeoman , stumped. i've deleted original project , created new 1 in fresh folder make sure wasn't overlooking invisible configs. restarted machine make sure wasn't running temporary server processes had forgotten about. after attempts, basic server starts fine, attaches chrome, , watcher updates browser on changes. (notably, server running on 9000, seems odd test-runner trying use 9000.) same error on attempting start test runner.
is can fix, or issue should report yeoman team? thanks.
add port: 9001
test, this:
test: { options: { port: 9001, ... } }
Comments
Post a Comment