Skip to content

Commit

Permalink
Merge pull request #54 from edx/fix-karma-hang
Browse files Browse the repository at this point in the history
Fix issues with karma hanging on exit
  • Loading branch information
bjacobel committed Apr 6, 2016
2 parents 9759688 + 3258744 commit cc2e77d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gulp/tasks/jscs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
gulp = require('gulp'),
paths = {
lint: [
'test/**/*.js',
'test/**/!(jquery.simulate)*.js',
'components/**/*.js',
'gulp/tasks/*.js',
'gulpfile.js'
Expand Down
2 changes: 1 addition & 1 deletion gulp/tasks/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
gulp = require('gulp'),
paths = {
lint: [
'test/**/*.js',
'test/**/!(jquery.simulate)*.js',
'components/**/*.js',
'gulp/tasks/*.js',
'gulpfile.js'
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"javascript"
],
"homepage": "https://github.com/edx/edx-ui-toolkit",
"scripts": {
"test": "gulp test"
},
"dependencies": {
"backbone": "~1.2.3",
"backbone.paginator": "~2.0.3",
Expand All @@ -29,7 +32,6 @@
"gulp-coveralls": "~0.1.4",
"gulp-jscs": "~3.0.2",
"gulp-jshint": "~2.0.0",
"gulp-karma": "~0.0.5",
"gulp-util": "~3.0.7",
"jasmine": "~2.4.1",
"jasmine-core": "~2.4.1",
Expand Down
3 changes: 1 addition & 2 deletions test/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ module.exports = function(config, options) {
reporters: [
{type: 'html', subdir: 'coverage-js/html'},
{type: 'cobertura', file: 'coverage.xml'},
{type: 'lcov', dir: 'coverage/'},
{type: 'text-summary'}
{type: 'lcov', dir: 'coverage/'}
]
},

Expand Down

0 comments on commit cc2e77d

Please sign in to comment.