mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 16:57:14 -06:00
21 lines
310 B
JavaScript
21 lines
310 B
JavaScript
module.exports = function(config) {
|
|
'use strict';
|
|
|
|
return {
|
|
dev: {
|
|
configFile: 'karma.conf.js',
|
|
singleRun: false,
|
|
},
|
|
|
|
debug: {
|
|
configFile: 'karma.conf.js',
|
|
singleRun: false,
|
|
browsers: ['Chrome']
|
|
},
|
|
|
|
test: {
|
|
configFile: 'karma.conf.js',
|
|
}
|
|
};
|
|
};
|