Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
753 B
37 lines
753 B
module.exports = function(config){ |
|
config.set({ |
|
basePath : '../', |
|
|
|
files : [ |
|
'app/lib/angular/angular.js', |
|
'app/lib/angular/angular-*.js', |
|
'test/lib/angular/angular-mocks.js', |
|
'app/js/**/*.js', |
|
'test/unit/**/*.js' |
|
], |
|
|
|
exclude : [ |
|
'app/lib/angular/angular-loader.js', |
|
'app/lib/angular/*.min.js', |
|
'app/lib/angular/angular-scenario.js' |
|
], |
|
|
|
autoWatch : true, |
|
|
|
frameworks: ['jasmine'], |
|
|
|
browsers : ['Chrome'], |
|
|
|
plugins : [ |
|
'karma-junit-reporter', |
|
'karma-chrome-launcher', |
|
'karma-firefox-launcher', |
|
'karma-jasmine' |
|
], |
|
|
|
junitReporter : { |
|
outputFile: 'test_out/unit.xml', |
|
suite: 'unit' |
|
} |
|
|
|
})}
|
|
|