-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(grunt): Added angular 1.3 karma config
- Loading branch information
1 parent
2ec8196
commit 210ba61
Showing
6 changed files
with
28,596 additions
and
1 deletion.
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
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,26 @@ | ||
// Karma configuration file | ||
module.exports = function (karma) { | ||
|
||
var files = require('../files').files; | ||
|
||
karma.set({ | ||
// base path, that will be used to resolve files and exclude | ||
basePath: '..', | ||
|
||
// list of files / patterns to load in the browser | ||
files: [].concat(files.angular('1.3.0-rc.1'), files.testUtils, files.src, files.test), | ||
|
||
// level of logging | ||
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG | ||
logLevel: karma.LOG_DEBUG, | ||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari | ||
// - PhantomJS | ||
browsers: [ 'PhantomJS' ] | ||
}) | ||
}; |
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
Oops, something went wrong.