From d076c93887d6b7b0ba65c840ee4ba1fb34971e35 Mon Sep 17 00:00:00 2001 From: Omar Gonzalez Date: Thu, 9 Aug 2012 12:14:26 -0700 Subject: [PATCH] Fixed some typos -Fixed some typos in the installation line and loadNpmTasks() Signed-off-by: Omar Gonzalez --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2273ee..a9bd00f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A grunt.js task to run your cucumber.js feature suite. ## Getting Started -Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-cucumber-js` +Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-cucumber` Then add this line to your project's `grunt.js` gruntfile: @@ -17,7 +17,7 @@ grunt.initConfig({ } }); -grunt.loadNpmTasks('grunt-cucumber-js'); +grunt.loadNpmTasks('grunt-cucumber'); grunt.registerTask('default', 'cucumberjs'); ```