Skip to content

Commit

Permalink
feat(karma-dependency): Bump Karma depdency to ~0.9.2
Browse files Browse the repository at this point in the history
Also fix karma.conf.js, to reflect new plugins subsystem, but i
don't really understand why there is tesing environement here -
the only test is a stub.
  • Loading branch information
kavu committed May 12, 2013
1 parent df1cf17 commit 23a4f25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 5 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
//TODO make the configFile optional
frameworks = ['mocha'];

files = [
MOCHA,
MOCHA_ADAPTER,
'node_modules/expect.js/expect.js',
'test/**/*.js'
];
];

plugins = ['karma-mocha', 'karma-chrome-launcher'];
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grunt-karma",
"version": "0.4.4",
"version": "0.5.0",
"description": "grunt plugin for karma test runner",
"main": "tasks/grunt-karma.js",
"repository": {
Expand All @@ -23,14 +23,15 @@
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"karma": "~0.8.5"
"karma": "~0.9.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"expect.js": "~0.2.0",
"grunt-release": "~0.2.0",
"grunt-contrib-watch": "~0.2.0",
"grunt-conventional-changelog": "0.0.12"
"grunt-conventional-changelog": "0.0.12",
"karma-mocha": "~0.0.1"
},
"peerDependencies": {
"grunt": "0.4.x"
Expand Down

0 comments on commit 23a4f25

Please sign in to comment.