mirror of https://github.com/grafana/grafana.git
24 lines
378 B
JavaScript
24 lines
378 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'],
|
|
mime: {
|
|
'text/x-typescript': ['ts', 'tsx']
|
|
},
|
|
},
|
|
|
|
test: {
|
|
configFile: 'karma.conf.js',
|
|
}
|
|
};
|
|
};
|