Skip to content

Commit

Permalink
remove babili, and use build step before running unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMcFarland committed Oct 19, 2017
1 parent b87202f commit cf048f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "npm run clean ; browserify -e src/index.js -o dist/index.js -t [ babelify --presets [ es2015 ] ] -s PicoLambda",
"test": "jasmine test/*.test.js",
"test:chrome": "karma start karma.local.conf.js --browsers Chrome",
"test:remote": "npm run lint && BUILD=$(git rev-parse --short HEAD) karma start karma.conf.js",
"test:remote": "npm run build ; npm run lint && BUILD=$(git rev-parse --short HEAD) karma start karma.conf.js",
"lint": "semistandard src/index.js test/test.js --fix | snazzy",
"watch": "nodemon --exec 'jasmine' test/test.js"
},
Expand Down Expand Up @@ -49,7 +49,6 @@
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"babili": "0.0.12",
"install": "^0.10.1",
"jasmine": "2.5.3",
"jasmine-node": "1.14.5",
Expand Down
3 changes: 0 additions & 3 deletions test/parray.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ function init () {
parray: require('../src/index.js').parray,
}
}
return {
parray: window.PicoLambda.parray,
}
}

describe('api: concat', () => {
Expand Down

0 comments on commit cf048f9

Please sign in to comment.