1234567891011121314151617181920212223242526 |
- /* global io */
- /* eslint-disable no-new */
- require('core-js/es5')
- var Karma = require('./karma')
- var StatusUpdater = require('./updater')
- var util = require('../common/util')
- var constants = require('./constants')
- var KARMA_URL_ROOT = constants.KARMA_URL_ROOT
- var KARMA_PROXY_PATH = constants.KARMA_PROXY_PATH
- // Connect to the server using socket.io http://socket.io
- var socket = io(location.host, {
- reconnectionDelay: 500,
- reconnectionDelayMax: Infinity,
- timeout: 2000,
- path: KARMA_PROXY_PATH + KARMA_URL_ROOT.substr(1) + 'socket.io',
- 'sync disconnect on unload': true
- })
- // instantiate the updater of the view
- new StatusUpdater(socket, util.elm('title'), util.elm('banner'), util.elm('browsers'))
- window.karma = new Karma(socket, util.elm('context'), window.open,
- window.navigator, window.location)
|