From bb58576ba5ef62bce90d79a51cbc1bd4cf8d25ae Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Wed, 20 Jun 2012 21:03:44 -0700 Subject: [PATCH] Update testing instructions --- README.md | 2 +- Rakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20e2f77..d117222 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ first. Once it's installed, you can install vows using [npm](http://npmjs.org/). Then, run the tests. - $ vows test/*_test.js + $ vows --spec The test suite consists of both unit and integration tests. If a template isn't rendering correctly for you, you can make a test for it by doing the following: diff --git a/Rakefile b/Rakefile index 0a62cb4..33eb805 100644 --- a/Rakefile +++ b/Rakefile @@ -17,7 +17,7 @@ end desc "Run all tests, requires vows (see http://vowsjs.org)" task :test do - sh "vows test/*_test.js" + sh "vows --spec" end desc "Minify to #{minified_file}, requires UglifyJS (see http://marijnhaverbeke.nl/uglifyjs)"