add peerDependencies
This commit is contained in:
parent
afb4a64142
commit
ed42d9dc22
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,4 +3,4 @@ npm-debug.log
|
||||
tmp
|
||||
.idea
|
||||
tmp
|
||||
|
||||
junit
|
10
README.md
10
README.md
@ -5,12 +5,20 @@
|
||||
|
||||
|
||||
## Getting Started
|
||||
This plugin requires Grunt `~0.4.0`
|
||||
|
||||
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:
|
||||
|
||||
```shell
|
||||
npm install grunt-contrib-jasmine --save-dev
|
||||
```
|
||||
|
||||
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
|
||||
|
||||
```js
|
||||
grunt.loadNpmTasks('grunt-contrib-jasmine');
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
@ -213,4 +221,4 @@ for more information on the RequireJS template.
|
||||
|
||||
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
||||
|
||||
*This file was generated on Sun Feb 17 2013 21:40:03.*
|
||||
*This file was generated on Mon Feb 18 2013 08:42:17.*
|
||||
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<testsuites>
|
||||
|
||||
<testsuite name="Player" errors="0" tests="2" failures="0" time="0.012" timestamp="2013-02-18T02:40:02.174Z">
|
||||
|
||||
<testcase assertions="2" classname="Player" name="should be able to play a Song" time="0.005">
|
||||
|
||||
</testcase>
|
||||
|
||||
<testcase assertions="1" classname="Player" name="tells the current song if the user has made it a favorite" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
</testsuites>
|
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<testsuites>
|
||||
|
||||
<testsuite name="Player #resume" errors="0" tests="1" failures="0" time="0.001" timestamp="2013-02-18T02:40:02.173Z">
|
||||
|
||||
<testcase assertions="1" classname="Player #resume" name="should throw an exception if song is already playing" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
</testsuites>
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<testsuites>
|
||||
|
||||
<testsuite name="Player when song has been paused" errors="0" tests="2" failures="0" time="0.002" timestamp="2013-02-18T02:40:02.170Z">
|
||||
|
||||
<testcase assertions="2" classname="Player when song has been paused" name="should indicate that the song is currently paused" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
<testcase assertions="2" classname="Player when song has been paused" name="should be possible to resume" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
</testsuites>
|
@ -1,36 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<testsuites>
|
||||
|
||||
<testsuite name="Player" errors="0" tests="2" failures="0" time="0.011" timestamp="2013-02-18T02:40:03.603Z">
|
||||
|
||||
<testcase assertions="2" classname="Player" name="should be able to play a Song" time="0.005">
|
||||
|
||||
</testcase>
|
||||
|
||||
<testcase assertions="1" classname="Player" name="tells the current song if the user has made it a favorite" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
<testsuite name="Player when song has been paused" errors="0" tests="2" failures="0" time="0.002" timestamp="2013-02-18T02:40:03.600Z">
|
||||
|
||||
<testcase assertions="2" classname="Player when song has been paused" name="should indicate that the song is currently paused" time="0.001">
|
||||
|
||||
</testcase>
|
||||
|
||||
<testcase assertions="2" classname="Player when song has been paused" name="should be possible to resume" time="0">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
<testsuite name="Player #resume" errors="0" tests="1" failures="0" time="0" timestamp="2013-02-18T02:40:03.602Z">
|
||||
|
||||
<testcase assertions="1" classname="Player #resume" name="should throw an exception if song is already playing" time="0">
|
||||
|
||||
</testcase>
|
||||
|
||||
</testsuite>
|
||||
|
||||
</testsuites>
|
@ -37,6 +37,9 @@
|
||||
"grunt-contrib-jshint": "~0.1.1",
|
||||
"grunt": "~0.4.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"grunt": "~0.4.0"
|
||||
},
|
||||
"keywords": [
|
||||
"gruntplugin",
|
||||
"jasmine",
|
||||
|
Loading…
Reference in New Issue
Block a user