-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(karma): set up config and dependencies for karma
- Loading branch information
Erin Altenhof-Long
committed
Jun 2, 2014
1 parent
fe5f2c7
commit bfa0f20
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |