One more README tweak

This commit is contained in:
Carl Jackson & Davis W. Frank 2011-03-09 13:15:33 -08:00
parent 75fb19bc49
commit 0c77662c5b
1 changed files with 7 additions and 2 deletions

View File

@ -25,10 +25,15 @@ Jasmine Core relies on Ruby for executing the test suite and building the projec
### How to Develop for Jasmine Core
* Write specs
* Make them pass in a browser (or three): open `spec/runner.html`
* Make them pass in Node: `node spec/node_suite.js`
* Make them pass in a browser (or three):
* open `spec/runner.html` in your browsers
* `rake spec:browser` will run in the default browser on MacOS
* Make them pass in Node: `rake spec:node`
* Fix any warnings or errors from JSHint: `rake jasmine:lint`
Running `rake spec` will run the browser tests, then run specs in Node, then run JSHint. But this will only run in the default browser and only on MacOS (for now).
### Making a Successful Pull Request
* __Include specs for your work__ - it helps us understand your intent and makes sure that future development doesn't break your work