File tree 4 files changed +22
-4
lines changed
4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
2
node /node_modules
3
3
.DS_Store
4
+
5
+ node /npm-debug.log
Original file line number Diff line number Diff line change
1
+ machine :
2
+ services :
3
+ - docker
4
+
5
+ dependencies :
6
+ override :
7
+ - sudo pip install -U docker-compose
8
+
9
+ test :
10
+ override :
11
+ - docker-compose run -d --no-deps node
12
+ - cd node; mocha
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"description" : " " ,
5
5
"main" : " index.js" ,
6
- "scripts" : {
7
- "test" : " echo \" Error: no test specified\" && exit 1"
8
- },
9
- "author" : " " ,
6
+ "author" : " Anand Mani Sankar" ,
10
7
"license" : " ISC" ,
11
8
"dependencies" : {
12
9
"express" : " ^4.12.3" ,
Original file line number Diff line number Diff line change
1
+ var assert = require ( "assert" ) ;
2
+
3
+ describe ( 'Dummy Test' , function ( ) {
4
+ it ( 'should pass' , function ( ) {
5
+ assert . ok ( true , "It is true!" ) ;
6
+ } ) ;
7
+ } ) ;
You can’t perform that action at this time.
0 commit comments