Skip to content

Commit 194a7f1

Browse files
author
tanem
committedAug 18, 2015
Update dependencies
1 parent 31857a5 commit 194a7f1

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed
 

‎package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
"grunt": "~0.4.1"
2222
},
2323
"devDependencies": {
24-
"grunt": "~0.4.1",
25-
"grunt-simple-mocha": "~0.4.0",
26-
"should": "~1.2.2",
27-
"grunt-release": "~0.5.1",
28-
"grunt-contrib-jshint": "~0.6.2",
29-
"matchdep": "~0.1.2",
30-
"grunt-mdlint": "0.0.0"
24+
"grunt": "^0.4.5",
25+
"grunt-contrib-jshint": "^0.11.2",
26+
"grunt-mdlint": "0.0.1",
27+
"grunt-release": "^0.13.0",
28+
"grunt-simple-mocha": "^0.4.0",
29+
"matchdep": "^0.3.0",
30+
"should": "^7.0.4"
3131
},
3232
"dependencies": {
33-
"nodemon": "~1.3.0"
33+
"nodemon": "^1.4.1"
3434
}
3535
}

‎test/integrationTests.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,35 +25,35 @@ describe('grunt-nodemon', function () {
2525
});
2626

2727
it('should set arguments to the app correctly', function() {
28-
logOutput.should.include('production');
28+
logOutput.should.containEql('production');
2929
});
3030

3131
it('should set node arguments correctly', function() {
32-
logOutput.should.include('debug');
32+
logOutput.should.containEql('debug');
3333
});
3434

3535
it('should set the ignored files correctly', function() {
36-
logOutput.should.include('README.md');
36+
logOutput.should.containEql('README.md');
3737
});
3838

3939
it('should set the watched extensions correctly', function() {
40-
logOutput.should.include('tasks');
40+
logOutput.should.containEql('tasks');
4141
});
4242

4343
it('should set the delay time correctly', function() {
44-
logOutput.should.include('1000');
44+
logOutput.should.containEql('1000');
4545
});
4646

4747
it('should set the legacy watch correctly', function() {
48-
logOutput.should.include('legacyWatch: true');
48+
logOutput.should.containEql('legacyWatch: true');
4949
});
5050

5151
it('should set environment variables correctly', function() {
52-
logOutput.should.include('Port: 8181');
52+
logOutput.should.containEql('Port: 8181');
5353
});
5454

5555
it('should set the callback correctly', function() {
56-
logOutput.should.include('custom logging');
56+
logOutput.should.containEql('custom logging');
5757
});
5858
});
5959

@@ -64,7 +64,7 @@ describe('grunt-nodemon', function () {
6464
});
6565

6666
it('should log nodemon output', function() {
67-
logOutput.should.include('debug');
67+
logOutput.should.containEql('debug');
6868
});
6969
});
7070
});

0 commit comments

Comments
 (0)
Please sign in to comment.