File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change
1
+ const chai = require ( 'chai' ) ;
2
+ const gulpJenkins = require ( '../' ) ;
3
+
4
+ describe ( 'Gulp Jenkins' , function ( ) {
5
+
6
+ it ( 'should exist' , function ( ) {
7
+ chai . expect ( gulpJenkins ) . to . exist ;
8
+ } ) ;
9
+
10
+ } ) ;
Original file line number Diff line number Diff line change 4
4
"description" : " Jenkins Plugin for Gulp" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
- "test" : " echo \" Error: no test specified \" && exit 0 "
7
+ "test" : " mocha --recursive __tests__/ "
8
8
},
9
9
"repository" : {
10
10
"type" : " git" ,
16
16
"keywords" : [
17
17
" jenkins" ,
18
18
" gulp" ,
19
- " plugin" ,
20
- " gulp-plugin"
19
+ " plugin"
21
20
],
22
21
"author" : " Stephen Rodriguez <steprodriguez10@gmail.com>" ,
23
22
"license" : " GNU GPL v2" ,
24
23
"homepage" : " https://github.com/Stephn-R/gulp-jenkins" ,
25
24
"dependencies" : {
25
+ "chai" : " ^3.5.0" ,
26
26
"gulp-util" : " ^3.0.4" ,
27
27
"jenkins-api" : " ^0.2.7" ,
28
+ "mocha" : " ^3.1.2" ,
28
29
"object-assign" : " ^2.0.0" ,
29
30
"through2" : " ^0.6.5"
30
31
}
You can’t perform that action at this time.
0 commit comments