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.
38 lines
590 B
38 lines
590 B
11 years ago
|
module.exports = function(config){
|
||
|
config.set({
|
||
|
|
||
|
|
||
|
basePath : '../',
|
||
|
|
||
|
files : [
|
||
|
'test/e2e/**/*.js'
|
||
|
],
|
||
|
|
||
|
autoWatch : false,
|
||
|
|
||
|
browsers : ['Chrome'],
|
||
|
|
||
|
frameworks: ['ng-scenario'],
|
||
|
|
||
|
singleRun : true,
|
||
|
|
||
|
proxies : {
|
||
|
'/': 'http://localhost:8000/'
|
||
|
},
|
||
|
|
||
|
plugins : [
|
||
|
'karma-junit-reporter',
|
||
|
'karma-chrome-launcher',
|
||
|
'karma-firefox-launcher',
|
||
|
'karma-jasmine',
|
||
|
'karma-ng-scenario'
|
||
|
],
|
||
|
|
||
|
junitReporter : {
|
||
|
outputFile: 'test_out/e2e.xml',
|
||
|
suite: 'e2e'
|
||
|
}
|
||
|
|
||
|
})}
|
||
|
|