@@ -25,35 +25,35 @@ describe('grunt-nodemon', function () {
25
25
} ) ;
26
26
27
27
it ( 'should set arguments to the app correctly' , function ( ) {
28
- logOutput . should . include ( 'production' ) ;
28
+ logOutput . should . containEql ( 'production' ) ;
29
29
} ) ;
30
30
31
31
it ( 'should set node arguments correctly' , function ( ) {
32
- logOutput . should . include ( 'debug' ) ;
32
+ logOutput . should . containEql ( 'debug' ) ;
33
33
} ) ;
34
34
35
35
it ( 'should set the ignored files correctly' , function ( ) {
36
- logOutput . should . include ( 'README.md' ) ;
36
+ logOutput . should . containEql ( 'README.md' ) ;
37
37
} ) ;
38
38
39
39
it ( 'should set the watched extensions correctly' , function ( ) {
40
- logOutput . should . include ( 'tasks' ) ;
40
+ logOutput . should . containEql ( 'tasks' ) ;
41
41
} ) ;
42
42
43
43
it ( 'should set the delay time correctly' , function ( ) {
44
- logOutput . should . include ( '1000' ) ;
44
+ logOutput . should . containEql ( '1000' ) ;
45
45
} ) ;
46
46
47
47
it ( 'should set the legacy watch correctly' , function ( ) {
48
- logOutput . should . include ( 'legacyWatch: true' ) ;
48
+ logOutput . should . containEql ( 'legacyWatch: true' ) ;
49
49
} ) ;
50
50
51
51
it ( 'should set environment variables correctly' , function ( ) {
52
- logOutput . should . include ( 'Port: 8181' ) ;
52
+ logOutput . should . containEql ( 'Port: 8181' ) ;
53
53
} ) ;
54
54
55
55
it ( 'should set the callback correctly' , function ( ) {
56
- logOutput . should . include ( 'custom logging' ) ;
56
+ logOutput . should . containEql ( 'custom logging' ) ;
57
57
} ) ;
58
58
} ) ;
59
59
@@ -64,7 +64,7 @@ describe('grunt-nodemon', function () {
64
64
} ) ;
65
65
66
66
it ( 'should log nodemon output' , function ( ) {
67
- logOutput . should . include ( 'debug' ) ;
67
+ logOutput . should . containEql ( 'debug' ) ;
68
68
} ) ;
69
69
} ) ;
70
70
} ) ;
0 commit comments