Merge pull request #159 from ximinez/ripd-549

Clean up
This commit is contained in:
wltsmrz
2014-09-05 13:03:48 -07:00
4 changed files with 5 additions and 4554 deletions

4
.gitignore vendored
View File

@@ -17,7 +17,7 @@
# Ignore object files.
*.o
build/ripple*.js
build/*.js
tags
bin/rippled
Debug/*.*
@@ -51,4 +51,4 @@ test/config.js
npm-debug.log
# Ignore dist folder, build for bower
dist/
dist/

View File

@@ -78,7 +78,7 @@ remote.connect(function() {
2. `cd` into the repository and install dependencies with `npm install`
3. `npm test` or `node_modules\.bin\mocha test\*-test.js`
3. `npm test` or `node_modules/.bin/mocha test/*-test.js`
**Generating code coverage**

File diff suppressed because it is too large Load Diff

View File

@@ -37,9 +37,10 @@
"yargs": "~1.3.1"
},
"scripts": {
"postinstall": "node_modules/.bin/gulp concat-sjcl",
"build": "node_modules/.bin/gulp",
"pretest": "node_modules/.bin/gulp concat-sjcl",
"test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/.bin/_mocha -- --reporter spec test/*-test.js",
"test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/mocha -- --reporter spec test/*-test.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {