Skip to content

Commit

Permalink
adding phantomjs-launcher for karma
Browse files Browse the repository at this point in the history
  • Loading branch information
dasois committed May 24, 2014
1 parent 569f70f commit e7fbbda
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 36 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module.exports = function(config) {
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: [],
browsers: ['PhantomJS'],


// If browser does not capture in given timeout [ms], kill it
Expand Down
71 changes: 36 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,38 @@
{
"name": "ngProgress",
"version": "1.0.4",
"description": "slim, site-wide progressbar for AngularJS",
"main": "ngProgress.js",
"repository": {
"type": "git",
"url": "git://github.com/VictorBjelkholm/ngProgress.git"
},
"keywords": [
"angular",
"ng-progress",
"ngProgress",
"angular",
"progress",
"bar"
],
"author": "Victor Bjelkholm",
"license": "MIT",
"readmeFilename": "readme.md",
"gitHead": "75f7f7207ee9f13d43c41fc1ef03eb0180268f59",
"url": "https://github.com/VictorBjelkholm/ngProgress",
"bugs": {
"url": "https://github.com/VictorBjelkholm/ngProgress/issues"
},
"devDependencies": {
"grunt-contrib-concat": "~0.3.0",
"grunt-karma": "~0.7.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-jshint": "~0.6.0",
"karma": "~0.12",
"karma-jasmine": "~0.1"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
}
"name": "ngProgress",
"version": "1.0.4",
"description": "slim, site-wide progressbar for AngularJS",
"main": "ngProgress.js",
"repository": {
"type": "git",
"url": "git://github.com/VictorBjelkholm/ngProgress.git"
},
"keywords": [
"angular",
"ng-progress",
"ngProgress",
"angular",
"progress",
"bar"
],
"author": "Victor Bjelkholm",
"license": "MIT",
"readmeFilename": "readme.md",
"gitHead": "75f7f7207ee9f13d43c41fc1ef03eb0180268f59",
"url": "https://github.com/VictorBjelkholm/ngProgress",
"bugs": {
"url": "https://github.com/VictorBjelkholm/ngProgress/issues"
},
"devDependencies": {
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-karma": "~0.7.0",
"karma": "~0.12",
"karma-jasmine": "~0.1",
"karma-phantomjs-launcher": "^0.1.4"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run"
}
}

0 comments on commit e7fbbda

Please sign in to comment.