Skip to content

Commit 9044ac3

Browse files
committed
Merge pull request #189 from nodegit/mocha-integration
[WIP] Mocha integration
2 parents 58215f9 + 759b7a3 commit 9044ac3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+984
-25977
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
/node_modules/
22
/vendor/libgit2/
33
/build/
4+
/coverage/
45
/test/repos/
56

67
/vendor/Release
78
/vendor/*.vcxproj
89
/vendor/*.filters
910
/vendor/*.sln
1011

12+
/generate/idefs.json
13+
/binding.gyp
14+
1115
/src/*
1216
!/src/functions/copy.cc
1317
!/src/wrapper.cc
1418

1519
/include/*
1620
!/include/functions/copy.h
1721
!/include/wrapper.h
18-
19-
/generate/idefs.json
20-
/binding.gyp

.jshintrc

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
{
2+
"evil": true,
3+
"boss": true,
4+
"immed": false,
5+
"eqnull": true,
6+
"maxlen": 80,
27
"node": true,
3-
"proto": true
8+
"proto": true,
9+
"curly": true,
10+
"quotmark": "double",
11+
"trailing": true,
12+
"unused": "vars",
13+
"undef": true,
14+
"validthis": true,
15+
"globals": {
16+
"global": true,
17+
"define": true,
18+
"it": true,
19+
"describe": true,
20+
"before": true,
21+
"beforeEach": true
22+
}
423
}

0 commit comments

Comments
 (0)