-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from JohnnyEstilles/feature/code-refactoring
Refactoring code to improve testability
- Loading branch information
Showing
20 changed files
with
1,497 additions
and
590 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
coverage | ||
node_modules | ||
npm-debug.log | ||
tmp | ||
CHANGELOG.md | ||
EXTENDEDCHANGELOG.md | ||
output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
reporting: | ||
print: summary | ||
reports: | ||
- lcov | ||
- html | ||
dir: ./coverage | ||
report-config: | ||
dir: './coverage' | ||
lcovonly: {file: lcov.info} | ||
text: {file: null, maxCols: 0} | ||
text-summary: {file: null} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,7 @@ | |
"undef": true, | ||
"boss": true, | ||
"eqnull": true, | ||
"node": true | ||
"node": true, | ||
"mocha": true, | ||
"expr": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
before_install: | ||
- "0.12" | ||
|
||
notifications: | ||
email: | ||
- "[email protected]" | ||
- "[email protected]" | ||
|
||
addons: | ||
code_climate: | ||
repo_token: b6ed20570f0ec30b5b2acdbd706593928f204693efcd634110a36bc5f94822d9 | ||
|
||
before_install: | ||
- npm install -g grunt-cli | ||
install: | ||
- npm install | ||
- npm install -g mocha | ||
- npm install -g istanbul | ||
- npm install -g codeclimate-test-reporter | ||
|
||
before_script: | ||
- grunt jshint pre-test | ||
|
||
after_script: | ||
- istanbul cover node_modules/.bin/_mocha -- -R dot | ||
- codeclimate < ./coverage/lcov.info |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.