diff options
author | Ryan Lewis <ryanharrisonlewis@gmail.com> | 2015-12-13 21:42:54 -0800 |
---|---|---|
committer | Ryan Lewis <ryanharrisonlewis@gmail.com> | 2015-12-13 21:42:54 -0800 |
commit | eb1ec52b453c810e9cec3131d47e4d3d1856b387 (patch) | |
tree | d3a51ffb20d5baf073c46d4c1ad43b6f17d4662f | |
parent | 21bf95c92a1c04fd8a31742c1ea21ccb2d195c9c (diff) | |
download | handlebars.js-eb1ec52b453c810e9cec3131d47e4d3d1856b387.zip handlebars.js-eb1ec52b453c810e9cec3131d47e4d3d1856b387.tar.gz handlebars.js-eb1ec52b453c810e9cec3131d47e4d3d1856b387.tar.bz2 |
moving test documentation to contributing.md
-rw-r--r-- | CONTRIBUTING.md | 19 | ||||
-rw-r--r-- | README.markdown | 19 |
2 files changed, 19 insertions, 19 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 79db3ba..0814760 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,6 +42,25 @@ The `grunt dev` implements watching for tests and allows for in browser testing If you notice any problems, please report them to the GitHub issue tracker at [http://github.com/wycats/handlebars.js/issues](http://github.com/wycats/handlebars.js/issues). +##Running Tests + +To run tests locally, first install all dependencies. +```sh +npm install +``` + +Clone the mustache specs into the spec/mustache folder. +```sh +cd spec +rm -r mustache +git clone https://github.com/mustache/spec.git mustache +``` + +From the root directory, run the tests. +```sh +npm test +``` + ## Ember testing The current ember distribution should be tested as part of the handlebars release process. This requires building the `handlebars-source` gem locally and then executing the ember test script. diff --git a/README.markdown b/README.markdown index 65f4c77..904b9e0 100644 --- a/README.markdown +++ b/README.markdown @@ -114,25 +114,6 @@ Known Issues See [FAQ.md](https://github.com/wycats/handlebars.js/blob/master/FAQ.md) for known issues and common pitfalls. -Running Tests ---------- - -To run tests locally, first install all dependencies. -``` -npm install -``` - -Clone the mustache specs into the spec/mustache folder. -``` -cd spec -rm -r mustache -git clone https://github.com/mustache/spec.git mustache -``` - -From the root directory, run the tests. -``` -npm test -``` Handlebars in the Wild ---------------------- |