Skip to content

Commit

Permalink
chore(karma): set up config and dependencies for karma
Browse files Browse the repository at this point in the history
  • Loading branch information
Erin Altenhof-Long committed Jun 2, 2014
1 parent fe5f2c7 commit bfa0f20
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
15 changes: 15 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Karma configuration
// Generated on %DATE%

module.exports = function(config) {
config.set({
frameworks: ['jasmine'],
files: [
'components/**/*.js'
],
exclude: [
],
preprocessors: undefined,
browsers: ['Chrome']
});
};
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "i-want-to-help",
"version": "0.0.0",
"description": "Help app for angular",
"main": "app.js",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/ealtenho/i-want-to-help.git"
},
"author": "ealtenho",
"license": "apache 2",
"bugs": {
"url": "https://github.com/ealtenho/i-want-to-help/issues"
},
"homepage": "https://github.com/ealtenho/i-want-to-help",
"devDependencies": {
"karma": "^0.12.16",
"karma-chrome-launcher": "^0.1.4",
"karma-jasmine": "^0.1.5"
}
}

0 comments on commit bfa0f20

Please sign in to comment.