Skip to content

Commit

Permalink
Capitalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 14, 2016
1 parent 7046e74 commit 02b4370
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
sudo: false

language: node_js

node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "iojs"
before_install:
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi

matrix:
fast_finish: true

cache:
directories:
- node_modules
7 changes: 0 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# http://www.appveyor.com/docs/appveyor-yml

clone_depth: 10

version: "{build}"
Expand All @@ -20,11 +18,6 @@ environment:

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@2
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install

test_script:
Expand Down
6 changes: 3 additions & 3 deletions tasks/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = function(grunt) {
// node api
var fs = require('fs'),
path = require('path'),
sprintf = require("sprintf-js").sprintf;
sprintf = require('sprintf-js').sprintf;

// npm lib
var phantomjs = require('grunt-lib-phantomjs').init(grunt),
Expand Down Expand Up @@ -67,7 +67,7 @@ module.exports = function(grunt) {
};
}

grunt.registerMultiTask('jasmine', 'Run jasmine specs headlessly through PhantomJS.', function() {
grunt.registerMultiTask('jasmine', 'Run Jasmine specs headlessly through PhantomJS.', function() {

// Merge task-specific options with these defaults.
var options = this.options({
Expand Down Expand Up @@ -136,7 +136,7 @@ module.exports = function(grunt) {
file = options.host + options.outfile;
}

grunt.verbose.subhead('Testing jasmine specs via phantom').or.writeln('Testing jasmine specs via PhantomJS');
grunt.verbose.subhead('Testing Jasmine specs via PhantomJS').or.writeln('Testing Jasmine specs via PhantomJS');
grunt.log.writeln('');

phantomjs.spawn(file, {
Expand Down

0 comments on commit 02b4370

Please sign in to comment.