From 0c48002ada72635a5f856d18217a679aa49345bb Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Wed, 9 Apr 2014 15:07:35 +0200 Subject: [PATCH] chore(project): upgrade grunt-jasmine-node --- Gruntfile.js | 18 ++++++++++-------- package.json | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 93bb1fac..7c72b9a1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -32,14 +32,16 @@ module.exports = function(grunt) { } }, jasmine_node: { - specNameMatcher: '.*Spec', - projectRoot: 'test/spec/node', - jUnit: { - report: true, - savePath : 'tmp/reports/jasmine', - useDotNotation: true, - consolidate: true - } + options: { + specNameMatcher: '.*Spec', + jUnit: { + report: true, + savePath : 'tmp/reports/jasmine', + useDotNotation: true, + consolidate: true + } + }, + node: [ 'test/spec/node/' ] }, karma: { options: { diff --git a/package.json b/package.json index 28df354a..e37b423c 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "grunt-jsdoc": "~0.5.1", "grunt-concurrent": "~0.4.0", "grunt-karma": "~0.8.0", - "grunt-jasmine-node": "~0.1.0", + "grunt-jasmine-node": "~0.2.1", "grunt-release": "~0.7.0", "load-grunt-tasks": "~0.3.0", "karma": "~0.12.0",