File tree 3 files changed +31
-0
lines changed
3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ node_modules /
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " travis-buddy-mocha-tests" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " " ,
5
+ "main" : " index.js" ,
6
+ "scripts" : {
7
+ "test" : " mocha"
8
+ },
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/bluzi/travis-buddy-mocha-tests.git"
12
+ },
13
+ "author" : " " ,
14
+ "license" : " MIT" ,
15
+ "bugs" : {
16
+ "url" : " https://github.com/bluzi/travis-buddy-mocha-tests/issues"
17
+ },
18
+ "homepage" : " https://github.com/bluzi/travis-buddy-mocha-tests#readme" ,
19
+ "dependencies" : {
20
+ "assert" : " ^1.4.1" ,
21
+ "mocha" : " ^4.0.1"
22
+ }
23
+ }
Original file line number Diff line number Diff line change
1
+ const assert = require ( 'assert' ) ;
2
+
3
+ describe ( 'one' , ( ) => {
4
+ it ( 'should be equal to two' , ( ) => {
5
+ assert ( 1 === 2 ) ;
6
+ } ) ;
7
+ } ) ;
You can’t perform that action at this time.
0 commit comments