mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
23 lines
502 B
JavaScript
Executable File
23 lines
502 B
JavaScript
Executable File
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ['mocha', 'chai'],
|
|
plugins: [
|
|
'karma-mocha',
|
|
'karma-chai',
|
|
'karma-chrome-launcher',
|
|
'karma-firefox-launcher'
|
|
],
|
|
browsers: ['Firefox'],
|
|
// browsers: ['Safari', 'Chrome', 'ChromeCanary', 'Firefox', 'IE'],
|
|
basePath: '..',
|
|
files: [
|
|
// Populated in `grunt test` task.
|
|
],
|
|
singleRun: true,
|
|
port: 9876,
|
|
reporters: ['dots'],
|
|
colors: true,
|
|
autoWatch: false,
|
|
});
|
|
};
|