2014-06-02 23:50:13 +08:00
# grunt-contrib-jasmine v0.6.5 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine)
2012-11-02 13:03:09 +08:00
> Run jasmine specs headlessly through PhantomJS.
2013-02-16 07:53:59 +08:00
2012-11-02 13:03:09 +08:00
## Getting Started
2013-02-18 21:42:28 +08:00
This plugin requires Grunt `~0.4.0`
2013-02-16 07:53:59 +08:00
If you haven't used [Grunt ](http://gruntjs.com/ ) before, be sure to check out the [Getting Started ](http://gruntjs.com/getting-started ) guide, as it explains how to create a [Gruntfile ](http://gruntjs.com/sample-gruntfile ) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
2012-11-02 13:03:09 +08:00
2012-12-03 16:17:06 +08:00
```shell
2012-11-02 13:03:09 +08:00
npm install grunt-contrib-jasmine --save-dev
```
2013-02-21 01:42:59 +08:00
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
2013-02-18 21:42:28 +08:00
```js
grunt.loadNpmTasks('grunt-contrib-jasmine');
```
2013-02-16 07:53:59 +08:00
2012-11-02 13:03:09 +08:00
2012-12-03 16:17:06 +08:00
## Jasmine task
_Run this task with the `grunt jasmine` command._
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
Automatically builds and maintains your spec runner and runs your tests headlessly through PhantomJS.
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
#### Run specs locally or on a remote server
2012-11-02 13:03:09 +08:00
Run your tests on your local filesystem or via a server task like [grunt-contrib-connect][].
2013-06-16 02:15:01 +08:00
#### Customize your SpecRunner with templates
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
Use your own SpecRunner templates to customize how `grunt-contrib-jasmine` builds the SpecRunner. See the
[wiki ](https://github.com/gruntjs/grunt-contrib-jasmine/wiki/Jasmine-Templates ) for details and third party templates for examples.
2012-11-02 13:03:09 +08:00
2013-06-16 02:15:01 +08:00
##### AMD Support
2012-11-02 13:03:09 +08:00
2013-06-16 02:15:01 +08:00
Supports AMD tests via the [grunt-template-jasmine-requirejs ](https://github.com/jsoverson/grunt-template-jasmine-requirejs ) module
2012-11-02 13:03:09 +08:00
2013-06-16 02:15:01 +08:00
##### Third party templates
2013-03-01 22:58:22 +08:00
- [RequireJS ](https://github.com/jsoverson/grunt-template-jasmine-requirejs )
- [Code coverage output with Istanbul ](https://github.com/maenu/grunt-template-jasmine-istanbul )
- [StealJS ](https://github.com/jaredstehler/grunt-template-jasmine-steal )
2012-11-02 13:03:09 +08:00
[grunt-contrib-connect]: https://github.com/gruntjs/grunt-contrib-connect
2012-11-02 13:03:09 +08:00
### Options
2012-11-02 13:03:09 +08:00
#### src
Type: `String|Array`
2014-03-04 08:27:48 +08:00
Your source files. These are the files that you are testing. If you are using RequireJS your source files will be loaded as dependencies into your spec modules and will not need to be placed here.
2012-11-02 13:03:09 +08:00
2012-11-02 13:03:09 +08:00
#### options.specs
Type: `String|Array`
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
Your Jasmine specs.
2012-11-02 13:03:09 +08:00
2012-11-02 13:03:09 +08:00
#### options.vendor
Type: `String|Array`
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
Third party libraries like jQuery & generally anything loaded before source, specs, and helpers.
2012-11-02 13:03:09 +08:00
2012-11-02 13:03:09 +08:00
#### options.helpers
Type: `String|Array`
2012-11-02 13:03:09 +08:00
2014-01-30 00:51:59 +08:00
Non-source, non-spec helper files. In the default runner these are loaded after `vendor` files
2013-03-11 13:15:29 +08:00
#### options.styles
Type: `String|Array`
2014-01-30 00:51:59 +08:00
CSS files that get loaded after the jasmine.css
2012-11-02 13:03:09 +08:00
2013-04-05 01:57:11 +08:00
#### options.version
2013-06-16 03:25:30 +08:00
Type: `String`
2014-01-30 00:51:59 +08:00
Default: '2.0.0'
2013-04-05 01:57:11 +08:00
This is the jasmine-version which will be used. currently available versions are:
2014-01-30 00:51:59 +08:00
* 2.0.0
*Due to changes in Jasmine, pre-2.0 versions have been dropped and tracking will resume at 2.0.0*
2013-04-05 01:57:11 +08:00
2012-11-02 13:03:09 +08:00
#### options.outfile
2013-06-16 03:25:30 +08:00
Type: `String`
2012-11-02 13:03:09 +08:00
Default: `_SpecRunner.html`
2012-11-02 13:03:09 +08:00
2013-03-11 13:15:29 +08:00
The auto-generated specfile that phantomjs will use to run your tests.
2014-01-30 00:51:59 +08:00
Automatically deleted upon normal runs. Use the `:build` flag to generate a SpecRunner manually e.g.
`grunt jasmine:myTask:build`
2013-01-09 03:28:26 +08:00
2013-04-13 08:47:13 +08:00
#### options.keepRunner
2013-06-16 03:25:30 +08:00
Type: `Boolean`
Default: `false`
2013-04-13 08:47:13 +08:00
Prevents the auto-generated specfile used to run your tests from being automatically deleted.
2013-01-09 03:28:26 +08:00
#### options.junit.path
2013-06-16 03:25:30 +08:00
Type: `String`
2013-01-09 03:28:26 +08:00
Default: undefined
Path to output JUnit xml
#### options.junit.consolidate
2013-06-16 03:25:30 +08:00
Type: `Boolean`
2013-01-09 03:28:26 +08:00
Default: `false`
Consolidate the JUnit XML so that there is one file per top level suite.
2012-11-02 13:03:09 +08:00
2014-06-01 12:18:53 +08:00
#### options.junit.template
Type: `String`
Default: undefined
Specify a custom JUnit template instead of using the default `junitTemplate` .
2012-11-02 13:03:09 +08:00
#### options.host
2013-06-16 03:25:30 +08:00
Type: `String`
2012-11-02 13:03:09 +08:00
Default: ''
2014-01-30 00:51:59 +08:00
The host you want PhantomJS to connect against to run your tests.
2012-11-02 13:03:09 +08:00
e.g. if using an ad hoc server from within grunt
2012-11-02 13:03:09 +08:00
```js
2012-12-03 16:17:06 +08:00
host : 'http://127.0.0.1:8000/'
2012-11-02 13:03:09 +08:00
```
2014-01-30 00:51:59 +08:00
Without a `host` , your specs will be run from the local filesystem.
2012-11-02 13:03:09 +08:00
#### options.template
2013-06-16 03:25:30 +08:00
Type: `String` `Object`
2013-01-09 03:28:26 +08:00
Default: undefined
2012-11-02 13:03:09 +08:00
2013-03-11 13:15:29 +08:00
Custom template used to generate your Spec Runner. Parsed as underscore templates and provided
2012-11-02 13:03:09 +08:00
the expanded list of files needed to build a specrunner.
2013-01-09 03:28:26 +08:00
You can specify an object with a `process` method that will be called as a template function.
2013-01-10 13:14:50 +08:00
See the [Template API Documentation ](https://github.com/gruntjs/grunt-contrib-jasmine/wiki/Jasmine-Templates ) for more details.
2013-01-09 03:28:26 +08:00
2012-11-02 13:03:09 +08:00
#### options.templateOptions
2013-06-16 03:25:30 +08:00
Type: `Object`
2012-11-02 13:03:09 +08:00
Default: `{}`
2014-01-30 00:51:59 +08:00
Options that will be passed to your template. Used to pass settings to the template.
2012-11-02 13:03:09 +08:00
2014-02-27 04:12:10 +08:00
#### options.display
Type: `String`
Default: `full`
* `full` displays the full specs tree
* `short` only displays a success or failure character for each test (useful with large suites)
2014-02-28 06:06:29 +08:00
#### options.summary
Type: `Boolean`
Default: `false`
Display a list of all failed tests and their failure messages
2012-11-09 08:57:30 +08:00
### Flags
Name: `build`
2014-01-30 00:51:59 +08:00
Turn on this flag in order to build a SpecRunner html file. This is useful when troubleshooting templates,
2012-12-03 16:17:06 +08:00
running in a browser, or as part of a watch chain e.g.
2012-11-09 08:57:30 +08:00
```js
2012-12-03 16:17:06 +08:00
watch: {
pivotal : {
files: ['src/**/*.js', 'specs/**/*.js'],
tasks: 'jasmine:pivotal:build'
2012-11-09 08:57:30 +08:00
}
2012-12-03 16:17:06 +08:00
}
2012-11-09 08:57:30 +08:00
```
2013-09-03 02:03:05 +08:00
### Filtering specs
**filename**
`grunt jasmine --filter=foo` will run spec files that have `foo` in their file name.
**folder**
`grunt jasmine --filter=/foo` will run spec files within folders that have `foo*` in their name.
**wildcard**
`grunt jasmine --filter=/*-bar` will run anything that is located in a folder `*-bar`
**comma separated filters**
`grunt jasmine --filter=foo,bar` will run spec files that have `foo` or `bar` in their file name.
**flags with space**
`grunt jasmine --filter="foo bar"` will run spec files that have `foo bar` in their file name.
`grunt jasmine --filter="/foo bar"` will run spec files within folders that have `foo bar*` in their name.
2013-06-16 02:15:01 +08:00
#### Example application usage
- [Pivotal Labs' sample application ](https://github.com/jsoverson/grunt-contrib-jasmine-example )
2012-11-02 13:03:09 +08:00
#### Basic Use
2012-11-02 13:03:09 +08:00
Sample configuration to run Pivotal Labs' example Jasmine application.
```js
2012-12-03 16:17:06 +08:00
// Example configuration
grunt.initConfig({
jasmine: {
pivotal: {
2013-02-23 02:06:43 +08:00
src: 'src/**/*.js',
2012-12-03 16:17:06 +08:00
options: {
specs: 'spec/*Spec.js',
helpers: 'spec/*Helper.js'
}
2012-11-02 13:03:09 +08:00
}
}
2013-02-23 02:06:43 +08:00
});
2012-11-02 13:03:09 +08:00
```
#### Supplying a custom template
Supplying a custom template to the above example
```js
2012-12-03 16:17:06 +08:00
// Example configuration
grunt.initConfig({
jasmine: {
customTemplate: {
src: 'src/**/*.js',
options: {
specs: 'spec/*Spec.js',
2013-04-05 01:57:11 +08:00
helpers: 'spec/*Helper.js',
2012-12-03 16:17:06 +08:00
template: 'custom.tmpl'
}
2012-11-02 13:03:09 +08:00
}
}
2013-02-23 02:06:43 +08:00
});
2012-11-02 13:03:09 +08:00
```
2014-03-20 07:21:24 +08:00
#### Supplying template modules and vendors
A complex version for the above example
```js
// Example configuration
grunt.initConfig({
jasmine: {
customTemplate: {
src: 'src/**/*.js',
options: {
specs: 'spec/*Spec.js',
helpers: 'spec/*Helper.js',
template: require('exports-process.js')
vendor: [
"vendor/*.js",
"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"
]
}
}
}
});
```
2013-01-10 13:14:50 +08:00
#### Sample RequireJS/NPM Template usage
2012-11-02 13:03:09 +08:00
2013-01-10 13:14:50 +08:00
```js
// Example configuration
grunt.initConfig({
jasmine: {
yourTask: {
src: 'src/**/*.js',
options: {
specs: 'spec/*Spec.js',
template: require('grunt-template-jasmine-requirejs')
}
}
}
2013-02-23 02:06:43 +08:00
});
2013-01-10 13:14:50 +08:00
```
NPM Templates are just node modules, so you can write and treat them as such.
Please see the [grunt-template-jasmine-requirejs ](https://github.com/jsoverson/grunt-template-jasmine-requirejs ) documentation
for more information on the RequireJS template.
2012-11-02 13:03:09 +08:00
2012-11-02 13:03:09 +08:00
## Release History
2014-06-01 12:18:53 +08:00
* 2014-05-31 v0.6.5 Option to allow specifying a junitTemplate.
2014-04-29 03:49:12 +08:00
* 2014-04-28 v0.6.4 Indent level fix. Moved scripts inside the body tag.
2014-01-30 00:51:59 +08:00
* 2014-01-29 v0.6.0 Jasmine 2.0.0 support Improved logging support Various merges/bugfixes
2013-09-03 02:05:30 +08:00
* 2013-08-02 v0.5.2 Fixed breakage with iframes /44 Added filter flag / 70 Fixed junit failure output /77
2013-06-19 01:24:52 +08:00
* 2013-06-18 v0.5.1 Merged /69 grunt async not called when tests fail OR keepRunner is true
* 2013-06-15 v0.5.0 updated rimraf made teardown async, added Function.prototype.bind polyfill breaking (templates) changed input options for getRelativeFileList breaking (usage) failing task on phantom error (SyntaxError, TypeError, et al)
2013-06-16 00:38:39 +08:00
* 2013-04-03 v0.4.2 bumped grunt-lib-phantomjs to 0.3.0/1.9 (closes merged addressed
* 2013-03-08 v0.4.0 bumped grunt-lib-phantomjs to 0.2.0/1.8 allowed spec/vendor/helper list to return non-matching files (e.g. for remote, http) merged merged
* 2013-02-24 v0.3.3 Added better console output (via Gabor Kiss @Neverl )
* 2013-02-17 v0.3.2 Ensure Gruntfile.js is included on npm.
* 2013-02-15 v0.3.1 First official release for Grunt 0.4.0.
* 2013-01-22 v0.3.1rc7 Exposed phantom and sendMessage to templates
* 2013-01-22 v0.3.0rc7 Updated dependencies for grunt v0.4.0rc6/rc7
* 2013-01-08 v0.3.0rc5 Updating to work with grunt v0.4.0rc5. Switching to this.filesSrc api. Added JUnit xml output (via Kelvin Luck @vitch ) Passing console.log from browser to verbose grunt logging Support for templates as separate node modules Removed internal requirejs template (see grunt-template-jasmine-requirejs)
* 2012-12-03 v0.2.0 Generalized requirejs template config Added loader plugin Tests for templates Updated jasmine to 1.3.0
* 2012-11-24 v0.1.2 Updated for new grunt/grunt-contrib apis
* 2012-11-07 v0.1.1 Fixed race condition in requirejs template
* 2012-11-07 v0.1.0 Ported grunt-jasmine-runner and grunt-jasmine-task to grunt-contrib
2012-12-03 16:17:06 +08:00
---
2012-11-02 13:03:09 +08:00
2012-12-03 16:17:06 +08:00
Task submitted by [Jarrod Overson ](http://jarrodoverson.com )
2012-11-02 13:03:09 +08:00
2014-06-01 12:18:53 +08:00
*This file was generated on Sat May 31 2014 21:18:20.*