changelog updates
This commit is contained in:
parent
44a0158f12
commit
17868081a7
@ -1,3 +1,7 @@
|
|||||||
|
v1.0.0:
|
||||||
|
date: 2016-01-26
|
||||||
|
changes:
|
||||||
|
- bump grunt-lib-phantomjs to 1.0.0
|
||||||
v0.9.2:
|
v0.9.2:
|
||||||
date: 2015-09-24
|
date: 2015-09-24
|
||||||
changes:
|
changes:
|
||||||
|
19
README.md
19
README.md
@ -1,4 +1,4 @@
|
|||||||
# grunt-contrib-jasmine v0.9.2 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/5985958by5rhnh31/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jasmine/branch/master)
|
# grunt-contrib-jasmine v1.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/5985958by5rhnh31/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jasmine/branch/master)
|
||||||
|
|
||||||
> Run jasmine specs headlessly through PhantomJS
|
> Run jasmine specs headlessly through PhantomJS
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ CSS files that get loaded after the jasmine.css
|
|||||||
|
|
||||||
#### options.version
|
#### options.version
|
||||||
Type: `String`
|
Type: `String`
|
||||||
Default: '2.0.1'
|
Default: `'2.0.1'`
|
||||||
|
|
||||||
This is the jasmine-version which will be used. currently available versions are:
|
This is the jasmine-version which will be used. currently available versions are:
|
||||||
|
|
||||||
@ -103,7 +103,7 @@ Prevents the auto-generated specfile used to run your tests from being automatic
|
|||||||
|
|
||||||
#### options.junit.path
|
#### options.junit.path
|
||||||
Type: `String`
|
Type: `String`
|
||||||
Default: undefined
|
Default: `undefined`
|
||||||
|
|
||||||
Path to output JUnit xml
|
Path to output JUnit xml
|
||||||
|
|
||||||
@ -115,13 +115,13 @@ Consolidate the JUnit XML so that there is one file per top level suite.
|
|||||||
|
|
||||||
#### options.junit.template
|
#### options.junit.template
|
||||||
Type: `String`
|
Type: `String`
|
||||||
Default: undefined
|
Default: `undefined`
|
||||||
|
|
||||||
Specify a custom JUnit template instead of using the default `junitTemplate`.
|
Specify a custom JUnit template instead of using the default `junitTemplate`.
|
||||||
|
|
||||||
#### options.host
|
#### options.host
|
||||||
Type: `String`
|
Type: `String`
|
||||||
Default: ''
|
Default: `''`
|
||||||
|
|
||||||
The host you want PhantomJS to connect against to run your tests.
|
The host you want PhantomJS to connect against to run your tests.
|
||||||
|
|
||||||
@ -135,7 +135,7 @@ Without a `host`, your specs will be run from the local filesystem.
|
|||||||
|
|
||||||
#### options.template
|
#### options.template
|
||||||
Type: `String` `Object`
|
Type: `String` `Object`
|
||||||
Default: undefined
|
Default: `undefined`
|
||||||
|
|
||||||
Custom template used to generate your Spec Runner. Parsed as underscore templates and provided
|
Custom template used to generate your Spec Runner. Parsed as underscore templates and provided
|
||||||
the expanded list of files needed to build a specrunner.
|
the expanded list of files needed to build a specrunner.
|
||||||
@ -156,7 +156,7 @@ Third party polyfill libraries like json2 that are loaded at the very top before
|
|||||||
|
|
||||||
#### options.display
|
#### options.display
|
||||||
Type: `String`
|
Type: `String`
|
||||||
Default: `full`
|
Default: `'full'`
|
||||||
|
|
||||||
* `full` displays the full specs tree
|
* `full` displays the full specs tree
|
||||||
* `short` only displays a success or failure character for each test (useful with large suites)
|
* `short` only displays a success or failure character for each test (useful with large suites)
|
||||||
@ -259,7 +259,7 @@ grunt.initConfig({
|
|||||||
options: {
|
options: {
|
||||||
specs: 'spec/*Spec.js',
|
specs: 'spec/*Spec.js',
|
||||||
helpers: 'spec/*Helper.js',
|
helpers: 'spec/*Helper.js',
|
||||||
template: require('exports-process.js')
|
template: require('exports-process.js'),
|
||||||
vendor: [
|
vendor: [
|
||||||
"vendor/*.js",
|
"vendor/*.js",
|
||||||
"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"
|
"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"
|
||||||
@ -295,6 +295,7 @@ for more information on the RequireJS template.
|
|||||||
|
|
||||||
## Release History
|
## Release History
|
||||||
|
|
||||||
|
* 2016-01-26 v1.0.0 bump grunt-lib-phantomjs to 1.0.0
|
||||||
* 2015-09-24 v0.9.2 Fixes npm@3 issues
|
* 2015-09-24 v0.9.2 Fixes npm@3 issues
|
||||||
* 2015-09-04 v0.9.1 Fix summary logging
|
* 2015-09-04 v0.9.1 Fix summary logging
|
||||||
* 2015-07-10 v0.9.0 Fix deprecated package.json licenses. Fix Phantomjs dependency to include correct phantom kill
|
* 2015-07-10 v0.9.0 Fix deprecated package.json licenses. Fix Phantomjs dependency to include correct phantom kill
|
||||||
@ -325,4 +326,4 @@ for more information on the RequireJS template.
|
|||||||
|
|
||||||
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
||||||
|
|
||||||
*This file was generated on Thu Sep 24 2015 13:00:10.*
|
*This file was generated on Tue Jan 26 2016 10:43:05.*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "grunt-contrib-jasmine",
|
"name": "grunt-contrib-jasmine",
|
||||||
"description": "Run jasmine specs headlessly through PhantomJS",
|
"description": "Run jasmine specs headlessly through PhantomJS",
|
||||||
"version": "0.9.2",
|
"version": "1.0.0",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Grunt Team",
|
"name": "Grunt Team",
|
||||||
"url": "http://gruntjs.com/"
|
"url": "http://gruntjs.com/"
|
||||||
|
Loading…
Reference in New Issue
Block a user