# grunt-jasmine-node **Repository Path**: mirrors_atlassian/grunt-jasmine-node ## Basic Information - **Project Name**: grunt-jasmine-node - **Description**: Grunt task for running jasmine-node - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # grunt-jasmine-node A grunt.js task to run your jasmine feature suite using jasmine-node. ## Getting Started Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-jasmine-node` Then add this line to your project's `Gruntfile.js` grunt file: ```javascript grunt.initConfig({ jasmine_node: { options: { forceExit: true, match: '.', matchall: false, extensions: 'js', specNameMatcher: 'spec', jUnit: { report: true, savePath : "./build/reports/jasmine/", useDotNotation: true, consolidate: true } }, all: ['spec/'] } }); grunt.loadNpmTasks('grunt-jasmine-node'); grunt.registerTask('default', ['jasmine_node']); ``` ## Options default options are: ```javascript { match: '.', matchall: false, specNameMatcher: 'spec', helperNameMatcher: 'helpers', extensions: 'js', showColors: true, includeStackTrace: true, useHelpers: false, teamcity: false, coffee: false, jUnit: { report: false, savePath : "./reports/", useDotNotation: true, consolidate: true } } ``` ## Bugs Help us squash them by submitting an issue that describes how you encountered it; please be as specific as possible including operating system, node, grunt, and grunt-jasmine-node versions. ## Release History see [GitHub Repository](/s9tpepper/grunt-jasmine-node). ## License Copyright (c) 2012 "s9tpepper" Omar Gonzalez & contributors. Licensed under the MIT license.