File tree Expand file tree Collapse file tree 6 files changed +172
-15
lines changed
Expand file tree Collapse file tree 6 files changed +172
-15
lines changed Original file line number Diff line number Diff line change 11.idea
2+ .nyc_output
23build
34lib
45node_modules
Original file line number Diff line number Diff line change 11/.idea
2+ /.nyc_output
23/.vscode
34/coverage
45/dist
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ before_install:
1414before_script :
1515 - greenkeeper-lockfile-update
1616script :
17- - node_modules/karma/bin/karma start karma.conf.js --single- run
17+ - yarn run test
1818after_script :
1919 - greenkeeper-lockfile-upload
2020after_success :
Original file line number Diff line number Diff line change 55 "main" : " lib/index.js" ,
66 "typings" : " lib/index.d.ts" ,
77 "scripts" : {
8- "test" : " karma start --single-run " ,
9- "mocha " : " mocha test/**/*.test.ts --require ts-node/register " ,
8+ "test" : " nyc mocha " ,
9+ "karma " : " karma start --single-run " ,
1010 "autoformat" : " prettier --config .prettierrc --write {src,test}/**/*.ts" ,
1111 "tslint-check" : " tslint-config-prettier-check ./tslint.json" ,
1212 "clean-up" : " rm -rf coverage && rm -rf lib" ,
1313 "prepublish" : " tsc -d && publish-please guard" ,
1414 "publish-please" : " npm run autoformat && npm run clean-up && publish-please"
1515 },
16+ "nyc" : {
17+ "include" : [
18+ " src/**/*.ts"
19+ ],
20+ "exclude" : [
21+ " test"
22+ ],
23+ "extension" : [
24+ " .ts"
25+ ],
26+ "require" : [
27+ " ts-node/register"
28+ ],
29+ "reporter" : [
30+ " text-summary" ,
31+ " lcov"
32+ ],
33+ "sourceMap" : true ,
34+ "instrument" : true
35+ },
1636 "repository" : {
1737 "type" : " git" ,
1838 "url" : " git@github.com:RobotlegsJS/RobotlegsJS-SignalCommandMap.git"
6989 "karma-sourcemap-writer" : " ^0.1.2" ,
7090 "karma-webpack" : " ^2.0.4" ,
7191 "mocha" : " ^3.5.3" ,
92+ "nyc" : " ^11.2.1" ,
7293 "prettier" : " ^1.7.0" ,
7394 "publish-please" : " ^2.3.1" ,
7495 "reflect-metadata" : " ^0.1.10" ,
7596 "remap-istanbul" : " ^0.9.5" ,
7697 "rimraf" : " ^2.6.2" ,
7798 "sinon" : " ^3.2.1" ,
7899 "sinon-chai" : " ^2.13.0" ,
100+ "source-map-support" : " ^0.4.18" ,
79101 "ts-loader" : " ^2.3.7" ,
80102 "ts-node" : " ^3.3.0" ,
81103 "tslint" : " ^5.7.0" ,
Original file line number Diff line number Diff line change 1+ --compilers ts-node/register
2+ --require source-map-support/register
3+ --full-trace
4+ --bail
5+ node_modules/reflect-metadata/Reflect.js
6+ test/**/*.test.ts
You can’t perform that action at this time.
0 commit comments