Skip to content

Commit

Permalink
New stab at passing on .8
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Dec 8, 2014
1 parent 2db9f0a commit 66b1755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"test": "npm run lint && node node_modules/.bin/taper tests/test-*.js && npm run test-browser",
"test-browser": "karma start tests/browser/karma.conf.js",
"test-browser": "browserify tests/browser/test.js -o tests/browser/test-browser.js && karma start tests/browser/karma.conf.js",
"lint": "node node_modules/.bin/eslint lib/ *.js tests/ && echo Lint passed."
},
"devDependencies": {
Expand All @@ -51,7 +51,6 @@
"function-bind": "~1.0.0",
"istanbul": "~0.3.2",
"karma": "~0.12.21",
"karma-browserify": "~1.0.0",
"karma-cli": "0.0.4",
"karma-phantomjs-launcher": "~0.1.4",
"karma-tap": "~1.0.1",
Expand Down
7 changes: 2 additions & 5 deletions tests/browser/karma.conf.js
Expand Up @@ -3,13 +3,10 @@
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['browserify', 'tap'],
frameworks: ['tap'],
files: [
'test.js'
'test-browser.js'
],
preprocessors: {
'test.js': [ 'browserify' ]
},
port: 9876,

reporters: ['dots'],
Expand Down

0 comments on commit 66b1755

Please sign in to comment.