Karma: Karma fails to start a browser on CI Server (v1.5.0)

Created on 6 Apr 2017  路  14Comments  路  Source: karma-runner/karma

Related to Issue #558.

Using karma 1.5.0 on my CI server (Visual Studio Online)...

2017-04-04T18:24:11.4691955Z [18:24:11] Starting 'karma-server'...
2017-04-04T18:24:22.7975588Z [32m04 04 2017 18:24:22.796:INFO [framework.browserify]: [39mbundle built
2017-04-04T18:24:22.8435587Z [32m04 04 2017 18:24:22.843:INFO [karma]: [39mKarma v1.5.0 server started at http://0.0.0.0:9876/
2017-04-04T18:24:22.8435587Z [32m04 04 2017 18:24:22.843:INFO [launcher]: [39mLaunching browser PhantomJS with unlimited concurrency
2017-04-04T18:24:22.8495591Z [32m04 04 2017 18:24:22.849:INFO [launcher]: [39mStarting browser PhantomJS
2017-04-04T18:25:22.8598561Z [33m04 04 2017 18:25:22.859:WARN [launcher]: [39mPhantomJS have not captured in 60000 ms, killing.
2017-04-04T18:25:24.8616444Z [33m04 04 2017 18:25:24.861:WARN [launcher]: [39mPhantomJS was not killed in 2000 ms, sending SIGKILL.
2017-04-04T18:25:26.8628686Z [33m04 04 2017 18:25:26.861:WARN [launcher]: [39mPhantomJS was not killed by SIGKILL in 2000 ms, continuing.

Trying using Chrome and Firefox results in similar errors.

My gulp task looks like this...

gulp.task("karma-server", ["js-build"], function (done) {
    new KarmaServer({
        configFile: __dirname + "/karma.conf.js",
        singleRun: true,
        autoWatch: false,
        browsers: ["PhantomJS"],
        reporters: ["junit"]
    },
    function() {
        gutil.log('Karma run complete');
        done();
        process.exit();
    }).start();
});

Specifying Karma v1.3.0 (which works on my dev machine) made the problem go away.

feedback-from-author

Most helpful comment

You need to add the environment variable...

PHANTOMJS_BIN: C:\NPM\Modules\PhantomJS.cmd

to the 'Variables' section of the build configuration and you should find that will fix it. Not the most intuitive.

All 14 comments

@tiefling is it reproduced for other browsers?(Chrome, Firefox)
is it reproduced if start without gulp?
Does version 1.4.x works for you?

Could you run karma with log level equals DEBUG and post your karma.config.js

Thanks

I'll test all of the above and get more data on it for you - In the meantime, here's my config. Not sure how I can start it without gulp...

// Karma configuration
// Generated on Mon Oct 24 2016 12:06:30 GMT+0100 (GMT Summer Time)

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['browserify', 'mocha'],

    plugins: [
        'karma-mocha',
        'karma-browserify',
        'karma-phantomjs-launcher',
        'karma-chrome-launcher',
        'karma-ie-launcher',
        'karma-firefox-launcher',
        'karma-htmlfile-reporter',
        'karma-junit-reporter'
    ],

    // list of files / patterns to load in the browser
    files: [
      '../../node_modules/phantomjs-polyfill-find/find-polyfill.js',
      'wwwroot/js/jquery.js',
      'wwwroot/js/bootstrap.js',
      'wwwroot/js/react.js',
      'wwwroot/js/react-dom.js',
      'wwwroot/js/vendors.js',
      'Test/*.js',
      'Test/**/*.js',
      '../../test/SharedJs/*.js',
      '../../test/SharedJs/**/*.js'
    ],


    // list of files to exclude
    exclude: [
      '*.min.js',
      'Test/helpers/*.js',
      'Test/compiled/*.js',
      'Test/compiled/**/*.js',
      '../../test/SharedJs/helpers/*.js',
      '../../test/SharedJs/compiled/*.js',
      '../../test/SharedJs/compiled/**/*.js'
    ],


    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
        'Test/*.js': ['browserify'],
        'Test/**/*.js': ['browserify'],
        '../../test/SharedJs/*.js': ['browserify'],
        '../../test/SharedJs/**/*.js': ['browserify']
    },

    browserify: {
        debug: true,
        entries: ['Scripts/app.js'],
        transform: [['babelify', { "presets": ["es2015"] }], 'browserify-shim'],
        cache: {}, packageCache: {}, fullPaths: true,
        configure: function (bundle) {
            bundle.on('prebundle', function () {
                bundle.external('react/addons');
                bundle.external('react/lib/ReactContext');
                bundle.external('react/lib/ExecutionEnvironment');
                bundle.external('jsdom'); // jsdom is only used for running as code without a browser context.
            });
        }
    },

    client : {
        mocha: {
            reporter: 'spec',
            ui : 'bdd'
        }
    },

    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['progress', 'html', 'junit'],

    htmlReporter: {
        outputFile: 'Test Results/test-results.html',
        pageTitle: 'Esoterix.Modle.Passengerweb - Unit Tests',
        groupSuites: true,
        useCompactStyle: false,
        useLegacyStyle: false
    },

    junitReporter: {
        outputDir: 'Test Results', // results will be saved as $outputDir/$browserName.xml
        outputFile: 'test-results.xml', // if included, results will be saved as $outputDir/$browserName/$outputFile
        suite: '', // suite will become the package name attribute in xml testsuite element
        useBrowserName: true, // add browser name to report and classes names
        nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
        classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
        properties: {} // key value pair of properties to add to the <properties> section of the report
    },

    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: true,


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['PhantomJS', 'Chrome', 'Firefox', 'IE'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    //singleRun: true,

    // Concurrency level
    // how many browser should be started simultaneous
    concurrency: Infinity
  })
}

1.5.0 seems to work fine on my local machine - It fails on my Visual Studio Online CI Server (updated title to reflect).

This makes recreating the problem here very difficult so I'm having to trigger many builds.

Looking at the CI Server...

v1.4.0 is also failing

Here's some info from the npm install step that may be relevant...

2017-04-06T10:16:55.1409356Z npm info using [email protected]
2017-04-06T10:16:55.1409356Z npm info using [email protected]

On my local machine (which works) I'm running node v6.3.1 / npm v4.0.3

Here's the log output from that run (with all browsers enabled)...

2017-04-06T10:19:01.6170603Z [10:19:01] Starting 'karma-server'...
2017-04-06T10:19:01.6570610Z 06 04 2017 10:19:01.654:DEBUG [plugin]: Loading plugin karma-mocha.
2017-04-06T10:19:01.6600614Z 06 04 2017 10:19:01.658:DEBUG [plugin]: Loading plugin karma-browserify.
2017-04-06T10:19:01.7310615Z 06 04 2017 10:19:01.730:DEBUG [plugin]: Loading plugin karma-phantomjs-launcher.
2017-04-06T10:19:01.7380612Z 06 04 2017 10:19:01.737:DEBUG [plugin]: Loading plugin karma-chrome-launcher.
2017-04-06T10:19:01.7450599Z 06 04 2017 10:19:01.744:DEBUG [plugin]: Loading plugin karma-ie-launcher.
2017-04-06T10:19:01.7480610Z 06 04 2017 10:19:01.746:DEBUG [plugin]: Loading plugin karma-firefox-launcher.
2017-04-06T10:19:01.7500618Z 06 04 2017 10:19:01.749:DEBUG [plugin]: Loading plugin karma-htmlfile-reporter.
2017-04-06T10:19:01.8100635Z 06 04 2017 10:19:01.809:DEBUG [plugin]: Loading plugin karma-junit-reporter.
2017-04-06T10:19:01.8510638Z 06 04 2017 10:19:01.850:DEBUG [framework.browserify]: created browserify bundle: C:\a\_temp\1e20a835a94ec76acf98945f56214a3d.browserify
2017-04-06T10:19:01.8690597Z 06 04 2017 10:19:01.859:DEBUG [framework.browserify]: add bundle to config.files at position 6
2017-04-06T10:19:01.8760636Z 06 04 2017 10:19:01.875:DEBUG [web-server]: Instantiating middleware
2017-04-06T10:19:01.8770613Z 06 04 2017 10:19:01.876:DEBUG [reporter]: Trying to load reporter: junit
2017-04-06T10:19:01.8780612Z 06 04 2017 10:19:01.877:DEBUG [reporter]: Trying to load color-version of reporter: junit (junit_color)
2017-04-06T10:19:01.8790609Z 06 04 2017 10:19:01.877:DEBUG [reporter]: Couldn't load color-version.
2017-04-06T10:19:01.9560621Z 06 04 2017 10:19:01.955:DEBUG [watcher]: Excluded file "C:/a/1/s/test/SharedJs/helpers/browser.js"
2017-04-06T10:19:01.9820609Z 06 04 2017 10:19:01.981:DEBUG [framework.browserify]: building bundle
2017-04-06T10:19:01.9900611Z 06 04 2017 10:19:01.989:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:19:01.9910614Z 06 04 2017 10:19:01.990:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:19:01.9910614Z 06 04 2017 10:19:01.990:DEBUG [framework.browserify]: updating Test\components\home\address-list-wrapper.spec.js in bundle
2017-04-06T10:19:01.9920614Z 06 04 2017 10:19:01.991:DEBUG [framework.browserify]: updating Test\components\home\dashboard.spec.js in bundle
2017-04-06T10:19:01.9931904Z 06 04 2017 10:19:01.993:DEBUG [framework.browserify]: updating Test\components\home\manager.spec.js in bundle
2017-04-06T10:19:01.9960608Z 06 04 2017 10:19:01.993:DEBUG [framework.browserify]: updating Test\components\passenger-address\form.spec.js in bundle
2017-04-06T10:19:01.9980615Z 06 04 2017 10:19:01.997:DEBUG [framework.browserify]: updating Test\components\passenger-address\manager.spec.js in bundle
2017-04-06T10:19:01.9992555Z 06 04 2017 10:19:01.999:DEBUG [framework.browserify]: updating Test\components\registration\form.spec.js in bundle
2017-04-06T10:19:02.0000614Z 06 04 2017 10:19:01.999:DEBUG [framework.browserify]: updating Test\data\hidden-state.spec.js in bundle
2017-04-06T10:19:02.0000614Z 06 04 2017 10:19:01.999:DEBUG [framework.browserify]: updating Test\data\passenger-rest-service-gateway.spec.js in bundle
2017-04-06T10:19:02.0010617Z 06 04 2017 10:19:02.000:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:19:02.0010617Z 06 04 2017 10:19:02.000:DEBUG [framework.browserify]: updating Test\data\registration-rest-service-gateway.spec.js in bundle
2017-04-06T10:19:02.0020613Z 06 04 2017 10:19:02.001:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:19:02.0020613Z 06 04 2017 10:19:02.001:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:19:02.0030613Z 06 04 2017 10:19:02.002:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:19:02.0040621Z 06 04 2017 10:19:02.002:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:19:02.0040621Z 06 04 2017 10:19:02.003:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\dynamic-component-renderer.spec.js in bundle
2017-04-06T10:19:02.0050618Z 06 04 2017 10:19:02.004:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-delete-button.spec.js in bundle
2017-04-06T10:19:02.0060614Z 06 04 2017 10:19:02.005:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-upload-button.spec.js in bundle
2017-04-06T10:19:02.0060614Z 06 04 2017 10:19:02.005:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\delete-button.spec.js in bundle
2017-04-06T10:19:02.0070612Z 06 04 2017 10:19:02.006:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\ok-button.spec.js in bundle
2017-04-06T10:19:02.0070612Z 06 04 2017 10:19:02.006:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio-line.spec.js in bundle
2017-04-06T10:19:02.0081018Z 06 04 2017 10:19:02.008:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio.spec.js in bundle
2017-04-06T10:19:02.0081018Z 06 04 2017 10:19:02.008:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\upload-button.spec.js in bundle
2017-04-06T10:19:02.0092567Z 06 04 2017 10:19:02.009:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\form.spec.js in bundle
2017-04-06T10:19:02.0100614Z 06 04 2017 10:19:02.009:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\manager.spec.js in bundle
2017-04-06T10:19:02.0100614Z 06 04 2017 10:19:02.009:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\ajax-request.spec.js in bundle
2017-04-06T10:19:02.0110610Z 06 04 2017 10:19:02.010:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\crud-rest-service-gateway.spec.js in bundle
2017-04-06T10:19:02.0110610Z 06 04 2017 10:19:02.010:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\lookup-rest-service-gateway.spec.js in bundle
2017-04-06T10:19:02.0120613Z 06 04 2017 10:19:02.011:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:19:02.0130606Z 06 04 2017 10:19:02.011:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:19:02.0130606Z 06 04 2017 10:19:02.012:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:19:02.7333823Z 06 04 2017 10:19:02.733:DEBUG [framework.browserify]: bundling
2017-04-06T10:19:14.7674413Z 06 04 2017 10:19:14.766:INFO [framework.browserify]: bundle built
2017-04-06T10:19:14.8264416Z 06 04 2017 10:19:14.824:INFO [karma]: Karma v1.4.0 server started at http://0.0.0.0:9876/
2017-04-06T10:19:14.8264416Z 06 04 2017 10:19:14.825:INFO [launcher]: Launching browsers PhantomJS, Chrome, Firefox, IE with unlimited concurrency
2017-04-06T10:19:14.8494423Z 06 04 2017 10:19:14.848:INFO [launcher]: Starting browser PhantomJS
2017-04-06T10:19:14.8524412Z 06 04 2017 10:19:14.852:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-4830806
2017-04-06T10:19:14.8594417Z 06 04 2017 10:19:14.859:DEBUG [launcher]: C:\NPM\Modules\node_modules\phantomjs-prebuilt\lib\phantom\bin\phantomjs C:\a\_temp\karma-4830806/capture.js
2017-04-06T10:19:14.8634417Z 06 04 2017 10:19:14.863:INFO [launcher]: Starting browser Chrome
2017-04-06T10:19:14.8634417Z 06 04 2017 10:19:14.863:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-12689516
2017-04-06T10:19:14.8644420Z 06 04 2017 10:19:14.864:DEBUG [launcher]: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --user-data-dir=C:\a\_temp\karma-12689516 --no-default-browser-check --no-first-run --disable-default-apps --disable-popup-blocking --disable-translate --disable-background-timer-throttling --disable-device-discovery-notifications http://localhost:9876/?id=12689516
2017-04-06T10:19:14.8664411Z 06 04 2017 10:19:14.866:INFO [launcher]: Starting browser Firefox
2017-04-06T10:19:14.8664411Z 06 04 2017 10:19:14.866:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-36479210
2017-04-06T10:19:14.8674412Z 06 04 2017 10:19:14.867:DEBUG [launcher]: C:\Program Files\Mozilla Firefox\firefox.exe http://localhost:9876/?id=36479210 -profile C:\a\_temp\karma-36479210 -no-remote
2017-04-06T10:19:14.8684419Z 06 04 2017 10:19:14.868:INFO [launcher]: Starting browser IE
2017-04-06T10:19:14.8684419Z 06 04 2017 10:19:14.868:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-38357545
2017-04-06T10:19:14.8714418Z 06 04 2017 10:19:14.871:DEBUG [launcher]: C:\Program Files\Internet Explorer\iexplore.exe http://localhost:9876/?id=38357545
2017-04-06T10:19:16.9804449Z 06 04 2017 10:19:16.980:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/client.html
2017-04-06T10:19:17.2503279Z 06 04 2017 10:19:17.250:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/karma.js
2017-04-06T10:19:18.1289769Z 06 04 2017 10:19:18.128:DEBUG [karma]: A browser has connected on socket VF-ii5drFsbb8M4WAAAA
2017-04-06T10:19:18.1299748Z 06 04 2017 10:19:18.129:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/favicon.ico
2017-04-06T10:19:18.2596035Z 06 04 2017 10:19:18.257:DEBUG [web-server]: upgrade /socket.io/?EIO=3&transport=websocket&sid=VF-ii5drFsbb8M4WAAAA
2017-04-06T10:20:14.8498372Z 06 04 2017 10:20:14.849:WARN [launcher]: PhantomJS have not captured in 60000 ms, killing.
2017-04-06T10:20:14.8648374Z 06 04 2017 10:20:14.864:WARN [launcher]: Chrome have not captured in 60000 ms, killing.
2017-04-06T10:20:14.8668389Z 06 04 2017 10:20:14.866:WARN [launcher]: Firefox have not captured in 60000 ms, killing.
2017-04-06T10:20:14.8708191Z 06 04 2017 10:20:14.870:WARN [launcher]: IE have not captured in 60000 ms, killing.
2017-04-06T10:20:15.0332058Z 06 04 2017 10:20:15.031:DEBUG [launcher]: Killed extra IE process 3392
2017-04-06T10:20:15.0332058Z 06 04 2017 10:20:15.032:DEBUG [launcher]: Process IE exited with code 0
2017-04-06T10:20:15.0332058Z 06 04 2017 10:20:15.032:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-38357545
2017-04-06T10:20:15.0352051Z 06 04 2017 10:20:15.035:INFO [launcher]: Trying to start IE again (1/2).
2017-04-06T10:20:15.0362054Z 06 04 2017 10:20:15.035:DEBUG [launcher]: Restarting IE
2017-04-06T10:20:15.0362054Z 06 04 2017 10:20:15.036:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-38357545
2017-04-06T10:20:15.0362054Z 06 04 2017 10:20:15.036:DEBUG [launcher]: C:\Program Files\Internet Explorer\iexplore.exe http://localhost:9876/?id=38357545
2017-04-06T10:20:16.1320946Z 06 04 2017 10:20:16.132:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/client.html
2017-04-06T10:20:16.1450945Z 06 04 2017 10:20:16.145:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/karma.js
2017-04-06T10:20:16.2070945Z 06 04 2017 10:20:16.206:DEBUG [karma]: A browser has connected on socket UhNPez0ZsAod1Tj1AAAB
2017-04-06T10:20:16.2190942Z 06 04 2017 10:20:16.215:DEBUG [web-server]: upgrade /socket.io/?EIO=3&transport=websocket&sid=UhNPez0ZsAod1Tj1AAAB
2017-04-06T10:20:16.2190942Z 06 04 2017 10:20:16.217:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/favicon.ico
2017-04-06T10:20:16.8519327Z 06 04 2017 10:20:16.851:WARN [launcher]: PhantomJS was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:20:16.8669327Z 06 04 2017 10:20:16.866:WARN [launcher]: Chrome was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:20:16.8669327Z 06 04 2017 10:20:16.866:WARN [launcher]: Firefox was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:20:18.8546590Z 06 04 2017 10:20:18.853:WARN [launcher]: PhantomJS was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:20:18.8546590Z 06 04 2017 10:20:18.853:DEBUG [launcher]: Process PhantomJS exited with code -1
2017-04-06T10:20:18.8546590Z 06 04 2017 10:20:18.853:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-4830806
2017-04-06T10:20:18.8556579Z 06 04 2017 10:20:18.855:DEBUG [launcher]: PhantomJS failed (timeout). Not restarting.
2017-04-06T10:20:18.8686586Z 06 04 2017 10:20:18.867:WARN [launcher]: Chrome was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:20:18.8686586Z 06 04 2017 10:20:18.867:DEBUG [launcher]: Process Chrome exited with code -1
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.867:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-12689516
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.867:WARN [launcher]: Firefox was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.867:DEBUG [launcher]: Process Firefox exited with code -1
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.867:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-36479210
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.868:DEBUG [launcher]: Chrome failed (timeout). Not restarting.
2017-04-06T10:20:18.8696581Z 06 04 2017 10:20:18.868:DEBUG [launcher]: Firefox failed (timeout). Not restarting.
2017-04-06T10:21:15.0370709Z 06 04 2017 10:21:15.037:WARN [launcher]: IE have not captured in 60000 ms, killing.
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.092:DEBUG [launcher]: Killed extra IE process 1824
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.092:DEBUG [launcher]: Process IE exited with code 0
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.092:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-38357545
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.093:INFO [launcher]: Trying to start IE again (2/2).
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.093:DEBUG [launcher]: Restarting IE
2017-04-06T10:21:15.0925242Z 06 04 2017 10:21:15.093:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-38357545
2017-04-06T10:21:15.0935257Z 06 04 2017 10:21:15.093:DEBUG [launcher]: C:\Program Files\Internet Explorer\iexplore.exe http://localhost:9876/?id=38357545
2017-04-06T10:21:16.1733132Z 06 04 2017 10:21:16.174:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/client.html
2017-04-06T10:21:16.1893122Z 06 04 2017 10:21:16.187:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/karma.js
2017-04-06T10:21:16.2459741Z 06 04 2017 10:21:16.245:DEBUG [karma]: A browser has connected on socket 1hAekdCuD9Tf5zXQAAAC
2017-04-06T10:21:16.2509739Z 06 04 2017 10:21:16.250:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/favicon.ico
2017-04-06T10:21:16.2539742Z 06 04 2017 10:21:16.254:DEBUG [web-server]: upgrade /socket.io/?EIO=3&transport=websocket&sid=1hAekdCuD9Tf5zXQAAAC
2017-04-06T10:22:15.0944561Z 06 04 2017 10:22:15.094:WARN [launcher]: IE have not captured in 60000 ms, killing.
2017-04-06T10:22:15.1784466Z 06 04 2017 10:22:15.171:DEBUG [launcher]: Killed extra IE process 2432
2017-04-06T10:22:15.1794465Z 06 04 2017 10:22:15.171:DEBUG [launcher]: Process IE exited with code 0
2017-04-06T10:22:15.1794465Z 06 04 2017 10:22:15.171:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-38357545
2017-04-06T10:22:15.1794465Z 06 04 2017 10:22:15.172:ERROR [launcher]: IE failed 2 times (timeout). Giving up.
2017-04-06T10:22:15.1794465Z 06 04 2017 10:22:15.173:DEBUG [karma]: Run complete, exiting.
2017-04-06T10:22:15.1804468Z 06 04 2017 10:22:15.173:DEBUG [launcher]: Disconnecting all browsers
2017-04-06T10:22:15.1804468Z 06 04 2017 10:22:15.174:DEBUG [framework.browserify]: cleaning up
2017-04-06T10:22:15.1804468Z [10:22:15] Karma run complete
2017-04-06T10:22:15.1804468Z [10:22:15] Finished 'karma-server' after 3.22 min
2017-04-06T10:22:15.1804468Z [10:22:15] Starting 'test-server'...
2017-04-06T10:22:15.1804468Z [10:22:15] Finished 'test-server' after 4.7 渭s
2017-04-06T10:22:15.2294461Z ##[debug]rc:0
2017-04-06T10:22:15.2294461Z ##[debug]success:true
2017-04-06T10:22:15.3494453Z ##[debug]Pattern found in testResultsFiles parameter
2017-04-06T10:22:15.3494453Z ##[debug]System.DefaultWorkingDirectory=C:\a\1\s
2017-04-06T10:22:17.3133492Z ##[debug]find C:\a\1\s
2017-04-06T10:22:17.3133492Z ##[debug]29109 matches.
2017-04-06T10:22:17.3195146Z ##[warning]No test result files matching C:\a\1\s\**\test-results.xml were found, so publishing JUnit test results is being skipped.

I don't think it's possible to run this on the CI server without gulp as otherwise I won't have a compiled test bundle to run against. I am just queuing a build using 1.3.0 with DEBUG enabled to get you a comparative log.

Comparative with 1.3.0 failed when running with all browsers (although it started running tests it didn't complete - not unexpected given I've never tried it before). Tried comparatives now with just Phantom, which has historically worked fine (it worked last night!)...

2017-04-06T10:45:03.0057901Z [10:45:02] Starting 'karma-server'...
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.838:DEBUG [plugin]: Loading plugin karma-mocha.
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.841:DEBUG [plugin]: Loading plugin karma-browserify.
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.912:DEBUG [plugin]: Loading plugin karma-phantomjs-launcher.
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.918:DEBUG [plugin]: Loading plugin karma-chrome-launcher.
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.925:DEBUG [plugin]: Loading plugin karma-ie-launcher.
2017-04-06T10:45:03.0057901Z 06 04 2017 10:45:02.929:DEBUG [plugin]: Loading plugin karma-firefox-launcher.
2017-04-06T10:45:03.0067912Z 06 04 2017 10:45:02.930:DEBUG [plugin]: Loading plugin karma-htmlfile-reporter.
2017-04-06T10:45:03.0157918Z 06 04 2017 10:45:03.014:DEBUG [plugin]: Loading plugin karma-junit-reporter.
2017-04-06T10:45:03.0537913Z 06 04 2017 10:45:03.053:DEBUG [framework.browserify]: created browserify bundle: C:\a\_temp\96be1aecde44d07eb3e86c7ec3babe6d.browserify
2017-04-06T10:45:03.0628102Z 06 04 2017 10:45:03.062:DEBUG [framework.browserify]: add bundle to config.files at position 6
2017-04-06T10:45:03.0677897Z 06 04 2017 10:45:03.066:DEBUG [web-server]: Instantiating middleware
2017-04-06T10:45:03.0697901Z 06 04 2017 10:45:03.067:DEBUG [reporter]: Trying to load reporter: junit
2017-04-06T10:45:03.0707919Z 06 04 2017 10:45:03.068:DEBUG [reporter]: Trying to load color-version of reporter: junit (junit_color)
2017-04-06T10:45:03.0707919Z 06 04 2017 10:45:03.068:DEBUG [reporter]: Couldn't load color-version.
2017-04-06T10:45:03.1117909Z 06 04 2017 10:45:03.111:DEBUG [watcher]: Excluded file "C:/a/1/s/test/SharedJs/helpers/browser.js"
2017-04-06T10:45:03.1287905Z 06 04 2017 10:45:03.127:DEBUG [framework.browserify]: building bundle
2017-04-06T10:45:03.1298105Z 06 04 2017 10:45:03.129:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:45:03.1307917Z 06 04 2017 10:45:03.130:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:45:03.1317914Z 06 04 2017 10:45:03.130:DEBUG [framework.browserify]: updating Test\components\home\address-list-wrapper.spec.js in bundle
2017-04-06T10:45:03.1317914Z 06 04 2017 10:45:03.131:DEBUG [framework.browserify]: updating Test\components\home\dashboard.spec.js in bundle
2017-04-06T10:45:03.1327924Z 06 04 2017 10:45:03.132:DEBUG [framework.browserify]: updating Test\components\home\manager.spec.js in bundle
2017-04-06T10:45:03.1434304Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\components\passenger-address\form.spec.js in bundle
2017-04-06T10:45:03.1434304Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\components\passenger-address\manager.spec.js in bundle
2017-04-06T10:45:03.1435641Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\data\hidden-state.spec.js in bundle
2017-04-06T10:45:03.1435641Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\components\registration\form.spec.js in bundle
2017-04-06T10:45:03.1437906Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\data\passenger-rest-service-gateway.spec.js in bundle
2017-04-06T10:45:03.1437906Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\data\registration-rest-service-gateway.spec.js in bundle
2017-04-06T10:45:03.1437906Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:45:03.1437906Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:45:03.1447911Z 06 04 2017 10:45:03.133:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:45:03.1459078Z 06 04 2017 10:45:03.142:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:45:03.1459078Z 06 04 2017 10:45:03.142:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:45:03.1459078Z 06 04 2017 10:45:03.142:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\dynamic-component-renderer.spec.js in bundle
2017-04-06T10:45:03.1467912Z 06 04 2017 10:45:03.144:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-delete-button.spec.js in bundle
2017-04-06T10:45:03.1467912Z 06 04 2017 10:45:03.145:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-upload-button.spec.js in bundle
2017-04-06T10:45:03.1467912Z 06 04 2017 10:45:03.145:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\delete-button.spec.js in bundle
2017-04-06T10:45:03.1467912Z 06 04 2017 10:45:03.146:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\ok-button.spec.js in bundle
2017-04-06T10:45:03.1477914Z 06 04 2017 10:45:03.146:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio-line.spec.js in bundle
2017-04-06T10:45:03.1477914Z 06 04 2017 10:45:03.147:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio.spec.js in bundle
2017-04-06T10:45:03.1487916Z 06 04 2017 10:45:03.147:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\upload-button.spec.js in bundle
2017-04-06T10:45:03.1487916Z 06 04 2017 10:45:03.148:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\form.spec.js in bundle
2017-04-06T10:45:03.1497907Z 06 04 2017 10:45:03.148:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\manager.spec.js in bundle
2017-04-06T10:45:03.1497907Z 06 04 2017 10:45:03.149:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\ajax-request.spec.js in bundle
2017-04-06T10:45:03.1508180Z 06 04 2017 10:45:03.149:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\crud-rest-service-gateway.spec.js in bundle
2017-04-06T10:45:03.1508180Z 06 04 2017 10:45:03.150:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\lookup-rest-service-gateway.spec.js in bundle
2017-04-06T10:45:03.1517917Z 06 04 2017 10:45:03.151:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:45:03.1517917Z 06 04 2017 10:45:03.151:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:45:03.1527924Z 06 04 2017 10:45:03.152:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:45:03.8585981Z 06 04 2017 10:45:03.856:DEBUG [framework.browserify]: bundling
2017-04-06T10:45:15.8145965Z 06 04 2017 10:45:15.813:INFO [framework.browserify]: bundle built
2017-04-06T10:45:15.8665964Z 06 04 2017 10:45:15.855:INFO [karma]: Karma v1.3.0 server started at http://localhost:9876/
2017-04-06T10:45:15.8735970Z 06 04 2017 10:45:15.856:INFO [launcher]: Launching browser PhantomJS with unlimited concurrency
2017-04-06T10:45:15.8735970Z 06 04 2017 10:45:15.865:INFO [launcher]: Starting browser PhantomJS
2017-04-06T10:45:15.8825970Z 06 04 2017 10:45:15.879:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-67756634
2017-04-06T10:45:15.8875963Z 06 04 2017 10:45:15.886:DEBUG [launcher]: C:\NPM\Modules\node_modules\phantomjs-prebuilt\lib\phantom\bin\phantomjs C:\a\_temp\karma-67756634/capture.js
2017-04-06T10:46:15.8796325Z 06 04 2017 10:46:15.878:WARN [launcher]: PhantomJS have not captured in 60000 ms, killing.
2017-04-06T10:46:17.8816016Z 06 04 2017 10:46:17.881:WARN [launcher]: PhantomJS was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:46:19.8818567Z 06 04 2017 10:46:19.882:WARN [launcher]: PhantomJS was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:46:19.8818567Z 06 04 2017 10:46:19.882:DEBUG [launcher]: Process PhantomJS exited with code -1
2017-04-06T10:46:19.8858570Z 06 04 2017 10:46:19.883:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-67756634
2017-04-06T10:46:19.8927393Z 06 04 2017 10:46:19.892:DEBUG [launcher]: PhantomJS failed (timeout). Not restarting.
2017-04-06T10:46:19.8927393Z 06 04 2017 10:46:19.892:DEBUG [karma]: Run complete, exiting.
2017-04-06T10:46:19.8947495Z 06 04 2017 10:46:19.894:DEBUG [launcher]: Disconnecting all browsers
2017-04-06T10:46:19.8957503Z 06 04 2017 10:46:19.895:DEBUG [framework.browserify]: cleaning up
2017-04-06T10:46:19.9037506Z [10:46:19] Karma run complete
2017-04-06T10:46:19.9037506Z [10:46:19] Finished 'karma-server' after 1.28 min
2017-04-06T10:46:19.9037506Z [10:46:19] Starting 'test-server'...
2017-04-06T10:46:19.9067496Z [10:46:19] Finished 'test-server' after 4.2 渭s

This is now not working anymore. Not sure what is broken now - I managed to get this working last night by reverting to 1.3.0 but now I'm just completely at a loss. So far the best result was a partial with all of the browsers on 1.3.0 (which looks like IE trying to do stuff)...

2017-04-06T10:32:40.9578142Z [10:32:40] Starting 'karma-server'...
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.316:DEBUG [plugin]: Loading plugin karma-mocha.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.322:DEBUG [plugin]: Loading plugin karma-browserify.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.406:DEBUG [plugin]: Loading plugin karma-phantomjs-launcher.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.412:DEBUG [plugin]: Loading plugin karma-chrome-launcher.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.418:DEBUG [plugin]: Loading plugin karma-ie-launcher.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.419:DEBUG [plugin]: Loading plugin karma-firefox-launcher.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.422:DEBUG [plugin]: Loading plugin karma-htmlfile-reporter.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.478:DEBUG [plugin]: Loading plugin karma-junit-reporter.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.510:DEBUG [framework.browserify]: created browserify bundle: C:\a\_temp\1392aebffa997fd0b9d73e91f6c949ab.browserify
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.517:DEBUG [framework.browserify]: add bundle to config.files at position 6
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.524:DEBUG [web-server]: Instantiating middleware
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.525:DEBUG [reporter]: Trying to load reporter: junit
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.526:DEBUG [reporter]: Trying to load color-version of reporter: junit (junit_color)
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.526:DEBUG [reporter]: Couldn't load color-version.
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.575:DEBUG [watcher]: Excluded file "C:/a/1/s/test/SharedJs/helpers/browser.js"
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.599:DEBUG [framework.browserify]: building bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.605:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.607:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.609:DEBUG [framework.browserify]: updating Test\components\home\address-list-wrapper.spec.js in bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.610:DEBUG [framework.browserify]: updating Test\components\home\dashboard.spec.js in bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.613:DEBUG [framework.browserify]: updating Test\components\home\manager.spec.js in bundle
2017-04-06T10:32:40.9578142Z 06 04 2017 10:32:40.613:DEBUG [framework.browserify]: updating Test\components\passenger-address\form.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.614:DEBUG [framework.browserify]: updating Test\components\passenger-address\manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.614:DEBUG [framework.browserify]: updating Test\components\registration\form.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.614:DEBUG [framework.browserify]: updating Test\data\hidden-state.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.616:DEBUG [framework.browserify]: updating Test\data\passenger-rest-service-gateway.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.616:DEBUG [framework.browserify]: updating Test\data\registration-rest-service-gateway.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.617:DEBUG [framework.browserify]: updating Test\js-component-manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.617:DEBUG [framework.browserify]: updating Test\react-component-manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.617:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.619:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.619:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.620:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\dynamic-component-renderer.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.620:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-delete-button.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.621:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\active-upload-button.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.621:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\delete-button.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.621:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\ok-button.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.622:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio-line.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.622:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\radio.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.623:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\form\upload-button.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.623:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\form.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.623:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\components\owned-address\manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.623:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\ajax-request.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.623:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\crud-rest-service-gateway.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.625:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\data\lookup-rest-service-gateway.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.625:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\dialogs.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.625:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\maps-manager.spec.js in bundle
2017-04-06T10:32:40.9588354Z 06 04 2017 10:32:40.625:DEBUG [framework.browserify]: updating ..\..\test\SharedJs\path-manager.spec.js in bundle
2017-04-06T10:32:41.3447870Z 06 04 2017 10:32:41.341:DEBUG [framework.browserify]: bundling
2017-04-06T10:32:51.9151731Z 06 04 2017 10:32:51.914:INFO [framework.browserify]: bundle built
2017-04-06T10:32:51.9511732Z 06 04 2017 10:32:51.950:INFO [karma]: Karma v1.3.0 server started at http://localhost:9876/
2017-04-06T10:32:51.9521727Z 06 04 2017 10:32:51.951:INFO [launcher]: Launching browsers PhantomJS, Chrome, Firefox, IE with unlimited concurrency
2017-04-06T10:32:51.9701731Z 06 04 2017 10:32:51.968:INFO [launcher]: Starting browser PhantomJS
2017-04-06T10:32:51.9711738Z 06 04 2017 10:32:51.970:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-3210957
2017-04-06T10:32:51.9761737Z 06 04 2017 10:32:51.975:DEBUG [launcher]: C:\NPM\Modules\node_modules\phantomjs-prebuilt\lib\phantom\bin\phantomjs C:\a\_temp\karma-3210957/capture.js
2017-04-06T10:32:51.9811734Z 06 04 2017 10:32:51.978:INFO [launcher]: Starting browser Chrome
2017-04-06T10:32:51.9811734Z 06 04 2017 10:32:51.978:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-94669282
2017-04-06T10:32:51.9811734Z 06 04 2017 10:32:51.979:DEBUG [launcher]: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --user-data-dir=C:\a\_temp\karma-94669282 --no-default-browser-check --no-first-run --disable-default-apps --disable-popup-blocking --disable-translate --disable-background-timer-throttling --disable-device-discovery-notifications http://localhost:9876/?id=94669282
2017-04-06T10:32:51.9831734Z 06 04 2017 10:32:51.981:INFO [launcher]: Starting browser Firefox
2017-04-06T10:32:51.9831734Z 06 04 2017 10:32:51.982:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-40448862
2017-04-06T10:32:51.9831734Z 06 04 2017 10:32:51.982:DEBUG [launcher]: C:\Program Files\Mozilla Firefox\firefox.exe http://localhost:9876/?id=40448862 -profile C:\a\_temp\karma-40448862 -no-remote
2017-04-06T10:32:51.9861736Z 06 04 2017 10:32:51.985:INFO [launcher]: Starting browser IE
2017-04-06T10:32:51.9861736Z 06 04 2017 10:32:51.985:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-21176931
2017-04-06T10:32:51.9891726Z 06 04 2017 10:32:51.988:DEBUG [launcher]: C:\Program Files\Internet Explorer\iexplore.exe http://localhost:9876/?id=21176931
2017-04-06T10:32:55.9329360Z 06 04 2017 10:32:55.930:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/client.html
2017-04-06T10:32:57.1320882Z 06 04 2017 10:32:57.131:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/karma.js
2017-04-06T10:32:59.9418134Z 06 04 2017 10:32:59.939:DEBUG [karma]: A browser has connected on socket /#kMOSZ1qaZYkAd7UhAAAA
2017-04-06T10:32:59.9428052Z 06 04 2017 10:32:59.940:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/favicon.ico
2017-04-06T10:33:00.4430508Z 06 04 2017 10:33:00.442:DEBUG [web-server]: upgrade /socket.io/?EIO=3&transport=websocket&sid=kMOSZ1qaZYkAd7UhAAAA
2017-04-06T10:33:51.9700125Z 06 04 2017 10:33:51.970:WARN [launcher]: PhantomJS have not captured in 60000 ms, killing.
2017-04-06T10:33:51.9800079Z 06 04 2017 10:33:51.980:WARN [launcher]: Chrome have not captured in 60000 ms, killing.
2017-04-06T10:33:51.9830125Z 06 04 2017 10:33:51.983:WARN [launcher]: Firefox have not captured in 60000 ms, killing.
2017-04-06T10:33:51.9880275Z 06 04 2017 10:33:51.988:WARN [launcher]: IE have not captured in 60000 ms, killing.
2017-04-06T10:33:52.3198718Z 06 04 2017 10:33:52.314:DEBUG [launcher]: Killed extra IE process 2824
2017-04-06T10:33:52.3198718Z 06 04 2017 10:33:52.314:DEBUG [launcher]: Process IE exited with code 0
2017-04-06T10:33:52.3328724Z 06 04 2017 10:33:52.314:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-21176931
2017-04-06T10:33:52.3328724Z 06 04 2017 10:33:52.316:INFO [launcher]: Trying to start IE again (1/2).
2017-04-06T10:33:52.3328724Z 06 04 2017 10:33:52.317:DEBUG [launcher]: Restarting IE
2017-04-06T10:33:52.3328724Z 06 04 2017 10:33:52.317:DEBUG [temp-dir]: Creating temp dir at C:\a\_temp\karma-21176931
2017-04-06T10:33:52.3328724Z 06 04 2017 10:33:52.317:DEBUG [launcher]: C:\Program Files\Internet Explorer\iexplore.exe http://localhost:9876/?id=21176931
2017-04-06T10:33:52.4578722Z 06 04 2017 10:33:52.457:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/client.html
2017-04-06T10:33:52.4748718Z 06 04 2017 10:33:52.473:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/karma.js
2017-04-06T10:33:52.5338722Z 06 04 2017 10:33:52.532:DEBUG [karma]: A browser has connected on socket /#DVL_mlE6CxtD5X7HAAAB
2017-04-06T10:33:52.5428723Z 06 04 2017 10:33:52.541:DEBUG [web-server]: upgrade /socket.io/?EIO=3&transport=websocket&sid=DVL_mlE6CxtD5X7HAAAB
2017-04-06T10:33:52.5498724Z 06 04 2017 10:33:52.548:DEBUG [web-server]: serving (cached): C:\a\1\s\node_modules\karma\static/favicon.ico
2017-04-06T10:33:52.5858752Z 06 04 2017 10:33:52.585:INFO [IE 11.0.0 (Windows 8.1 0.0.0)]: Connected on socket /#DVL_mlE6CxtD5X7HAAAB with id 21176931
2017-04-06T10:33:52.5858752Z 06 04 2017 10:33:52.585:DEBUG [launcher]: IE (id 21176931) captured in 60.634 secs
2017-04-06T10:33:52.6358715Z 06 04 2017 10:33:52.634:DEBUG [middleware:karma]: custom files null null
2017-04-06T10:33:52.6378726Z 06 04 2017 10:33:52.635:DEBUG [middleware:karma]: Serving static request /context.html
2017-04-06T10:33:52.6388725Z 06 04 2017 10:33:52.637:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/context.html
2017-04-06T10:33:52.6688721Z 06 04 2017 10:33:52.667:DEBUG [web-server]: serving: C:\a\1\s\node_modules\karma\static/context.js
2017-04-06T10:33:52.6868721Z 06 04 2017 10:33:52.670:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/node_modules/mocha/mocha.css?68699fe2e12cd4578e48892d46c27fe84ee09b09 /
2017-04-06T10:33:52.6888714Z 06 04 2017 10:33:52.670:DEBUG [middleware:source-files]: Fetching C:/a/1/s/node_modules/mocha/mocha.css
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.670:DEBUG [web-server]: serving (cached): C:/a/1/s/node_modules/mocha/mocha.css
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.671:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/node_modules/mocha/mocha.js?0491afff0b566ea45cd04c9164a355dba705689e /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.671:DEBUG [middleware:source-files]: Fetching C:/a/1/s/node_modules/mocha/mocha.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.672:DEBUG [web-server]: serving (cached): C:/a/1/s/node_modules/mocha/mocha.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.675:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/node_modules/karma-mocha/lib/adapter.js?e8826109cf50b958ee4bd667517729ffdd4de363 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.675:DEBUG [middleware:source-files]: Fetching C:/a/1/s/node_modules/karma-mocha/lib/adapter.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.676:DEBUG [web-server]: serving (cached): C:/a/1/s/node_modules/karma-mocha/lib/adapter.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.676:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/node_modules/phantomjs-polyfill-find/find-polyfill.js?1a8b4b211bca4a443aa2d30cd551f43dafe7833a /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.676:DEBUG [middleware:source-files]: Fetching C:/a/1/s/node_modules/phantomjs-polyfill-find/find-polyfill.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.677:DEBUG [web-server]: serving (cached): C:/a/1/s/node_modules/phantomjs-polyfill-find/find-polyfill.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.677:DEBUG [middleware:source-files]: Requesting /base/wwwroot/js/jquery.js?26e6b63b81813d8ad942c90d369df2673602b812 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.677:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/jquery.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.677:DEBUG [middleware:source-files]: Requesting /base/wwwroot/js/bootstrap.js?3b965a36a6b08854ad6eddedf85c5319fd392b4a /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.678:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/bootstrap.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.678:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/jquery.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.678:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/bootstrap.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.681:DEBUG [middleware:source-files]: Requesting /base/wwwroot/js/react.js?52f02d76035fef50127d73e406e79e763391d266 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.681:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/react.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.681:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/react.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.684:DEBUG [middleware:source-files]: Requesting /base/wwwroot/js/react-dom.js?15f0ad7516feeb2b30617a34f99dcbdbf3deb973 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.685:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/react-dom.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.685:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/react-dom.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.685:DEBUG [middleware:source-files]: Requesting /base/wwwroot/js/vendors.js?8abd699347ed6edac576c7aa9e2de7535baebc39 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.685:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/vendors.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.685:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/wwwroot/js/vendors.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.691:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/_temp/1392aebffa997fd0b9d73e91f6c949ab.browserify?6c1900c92420dc7ed08a499c95193b3ee333bf01 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.691:DEBUG [middleware:source-files]: Fetching C:/a/_temp/1392aebffa997fd0b9d73e91f6c949ab.browserify
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.691:DEBUG [middleware:source-files]: Requesting /base/Test/js-component-manager.spec.js?23fd9644c934200edf5b2e1b47db938664e27130 /
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.692:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/js-component-manager.spec.js
2017-04-06T10:33:52.7178724Z 06 04 2017 10:33:52.692:DEBUG [middleware:source-files]: Requesting /base/Test/react-component-manager.spec.js?0b3ea561bc0be7237defd113d3cc1f5d4d45ee97 /
2017-04-06T10:33:52.7188720Z 06 04 2017 10:33:52.692:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/react-component-manager.spec.js
2017-04-06T10:33:52.7188720Z 06 04 2017 10:33:52.692:DEBUG [web-server]: serving (cached): C:/a/_temp/1392aebffa997fd0b9d73e91f6c949ab.browserify
2017-04-06T10:33:52.7488727Z 06 04 2017 10:33:52.747:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/js-component-manager.spec.js
2017-04-06T10:33:52.7808727Z 06 04 2017 10:33:52.748:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/react-component-manager.spec.js
2017-04-06T10:33:52.7808727Z 06 04 2017 10:33:52.751:DEBUG [middleware:source-files]: Requesting /base/Test/components/home/address-list-wrapper.spec.js?b0b8ae4689cc0145b4cff0b333ea1577001e8f3f /
2017-04-06T10:33:52.7808727Z 06 04 2017 10:33:52.751:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/address-list-wrapper.spec.js
2017-04-06T10:33:52.7808727Z 06 04 2017 10:33:52.751:DEBUG [middleware:source-files]: Requesting /base/Test/components/home/dashboard.spec.js?2591caada81663918a70a14652ce6f61a4b19c47 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.752:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/dashboard.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.752:DEBUG [middleware:source-files]: Requesting /base/Test/components/home/manager.spec.js?7d37044d9298c911806371805c4c48e2aff6d780 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.755:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/manager.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.755:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/address-list-wrapper.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.756:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/dashboard.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.756:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/home/manager.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.764:DEBUG [middleware:source-files]: Requesting /base/Test/components/passenger-address/form.spec.js?a2c84d93a2fc9460ef28c689220773501a0079f6 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.764:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/passenger-address/form.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.764:DEBUG [middleware:source-files]: Requesting /base/Test/components/passenger-address/manager.spec.js?6f44b4c589cdc05680b294104c2f29a400f8e339 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.765:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/passenger-address/manager.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.765:DEBUG [middleware:source-files]: Requesting /base/Test/components/registration/form.spec.js?73cad7ebe6f48d3eadbb438dc09bcf2b65fed342 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.765:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/registration/form.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.765:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/passenger-address/form.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.766:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/passenger-address/manager.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.767:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/components/registration/form.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.768:DEBUG [middleware:source-files]: Requesting /base/Test/data/hidden-state.spec.js?840b01e08d4dde0d66e2635fea52b67c16fa4f11 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.768:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/hidden-state.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.769:DEBUG [middleware:source-files]: Requesting /base/Test/data/passenger-rest-service-gateway.spec.js?6dd5e9ddac13ab7ff0e215e7b50d937cf5916026 /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.769:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/passenger-rest-service-gateway.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.769:DEBUG [middleware:source-files]: Requesting /base/Test/data/registration-rest-service-gateway.spec.js?9172f9dfca7dc36b87a34c417e124db5e69c3a5e /
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.769:DEBUG [middleware:source-files]: Fetching C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/registration-rest-service-gateway.spec.js
2017-04-06T10:33:52.7818725Z 06 04 2017 10:33:52.769:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/hidden-state.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.770:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/passenger-rest-service-gateway.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.771:DEBUG [web-server]: serving (cached): C:/a/1/s/src/Esoterix.Modle.Passengerweb/Test/data/registration-rest-service-gateway.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.771:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/dialogs.spec.js?875c6653d1c5b49e38bf8e28d79960dc686a47be /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.771:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/dialogs.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.772:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/maps-manager.spec.js?7cdbe25a288382660a3bc9b3f1f06b3766814bf9 /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.772:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/maps-manager.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.772:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/path-manager.spec.js?74ede8b91b569fb3119c8fc6a22105dc7158b925 /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.773:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/path-manager.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.773:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/dialogs.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.773:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/maps-manager.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.774:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/path-manager.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.775:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/dynamic-component-renderer.spec.js?2da6796c70cb61b54c73534477327efb6493fb07 /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.775:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/dynamic-component-renderer.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.775:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/active-delete-button.spec.js?44c359a62301e4b12435d9eaee4f22b19121a54a /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.775:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/active-delete-button.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.776:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/active-upload-button.spec.js?c9e1508e7ef4675a7dac1be2f2c101537b1c6b9d /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.776:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/active-upload-button.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.776:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/dynamic-component-renderer.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.776:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/active-delete-button.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.777:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/active-upload-button.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.778:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/delete-button.spec.js?23a1a08472e4f0aa99c138c4a44c96caeb59d440 /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.778:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/delete-button.spec.js
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.778:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/ok-button.spec.js?174cba32d526589c32e5fd4a55dfb202d972fa2d /
2017-04-06T10:33:52.7828718Z 06 04 2017 10:33:52.778:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/ok-button.spec.js
2017-04-06T10:33:52.7838723Z 06 04 2017 10:33:52.779:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/radio-line.spec.js?68c5d2a520e265231cab2082011272c46f0637a5 /
2017-04-06T10:33:52.7838723Z 06 04 2017 10:33:52.779:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/radio-line.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.779:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/delete-button.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.779:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/ok-button.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.780:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/radio-line.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.780:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/radio.spec.js?bcc00e0f15ad570e8c3915a9cf0a8855eb253fd4 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.780:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/radio.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.780:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/radio.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/form/upload-button.spec.js?3c1b075116f968554050e0a7b9308975d27fe318 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/form/upload-button.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/owned-address/form.spec.js?462ab6f5c925a9e38acf8ea1cb5dc39f1d6d6c18 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/owned-address/form.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/components/owned-address/manager.spec.js?45c3ffd4c25ee0a28daa1381461730d462ecdee2 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.781:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/components/owned-address/manager.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.782:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/data/ajax-request.spec.js?1bd85334c331c9ebda208ec20232ae9f83e964d7 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.782:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/data/ajax-request.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.782:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/form/upload-button.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.782:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/owned-address/form.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.783:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/components/owned-address/manager.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.783:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/data/ajax-request.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.783:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/data/crud-rest-service-gateway.spec.js?a288879bf2cbe3c6f0fd96ef6b5ff7a10b389f7a /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.784:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/data/crud-rest-service-gateway.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.784:DEBUG [middleware:source-files]: Requesting /absoluteC:/a/1/s/test/SharedJs/data/lookup-rest-service-gateway.spec.js?5a528ce6ff607279db6311f2bd64ea3b49c0f5b6 /
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.784:DEBUG [middleware:source-files]: Fetching C:/a/1/s/test/SharedJs/data/lookup-rest-service-gateway.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.784:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/data/crud-rest-service-gateway.spec.js
2017-04-06T10:33:52.7868721Z 06 04 2017 10:33:52.785:DEBUG [web-server]: serving (cached): C:/a/1/s/test/SharedJs/data/lookup-rest-service-gateway.spec.js
2017-04-06T10:33:53.9711130Z 06 04 2017 10:33:53.971:WARN [launcher]: PhantomJS was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:33:53.9801136Z 06 04 2017 10:33:53.980:WARN [launcher]: Chrome was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:33:53.9841134Z 06 04 2017 10:33:53.984:WARN [launcher]: Firefox was not killed in 2000 ms, sending SIGKILL.
2017-04-06T10:33:55.9728267Z 06 04 2017 10:33:55.972:WARN [launcher]: PhantomJS was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:33:55.9728267Z 06 04 2017 10:33:55.972:DEBUG [launcher]: Process PhantomJS exited with code -1
2017-04-06T10:33:55.9728267Z 06 04 2017 10:33:55.972:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-3210957
2017-04-06T10:33:55.9748274Z 06 04 2017 10:33:55.974:DEBUG [launcher]: PhantomJS failed (timeout). Not restarting.
2017-04-06T10:33:55.9798521Z 06 04 2017 10:33:55.979:WARN [launcher]: Chrome was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:33:55.9798521Z 06 04 2017 10:33:55.979:DEBUG [launcher]: Process Chrome exited with code -1
2017-04-06T10:33:55.9798521Z 06 04 2017 10:33:55.979:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-94669282
2017-04-06T10:33:55.9808273Z 06 04 2017 10:33:55.979:DEBUG [launcher]: Chrome failed (timeout). Not restarting.
2017-04-06T10:33:55.9848259Z 06 04 2017 10:33:55.984:WARN [launcher]: Firefox was not killed by SIGKILL in 2000 ms, continuing.
2017-04-06T10:33:55.9848259Z 06 04 2017 10:33:55.984:DEBUG [launcher]: Process Firefox exited with code -1
2017-04-06T10:33:55.9848259Z 06 04 2017 10:33:55.984:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-40448862
2017-04-06T10:33:55.9858274Z 06 04 2017 10:33:55.985:DEBUG [launcher]: Firefox failed (timeout). Not restarting.
2017-04-06T10:34:02.5884537Z 06 04 2017 10:34:02.588:WARN [IE 11.0.0 (Windows 8.1 0.0.0)]: Disconnected (1 times), because no message in 10000 ms.
2017-04-06T10:34:02.5924134Z 06 04 2017 10:34:02.591:DEBUG [karma]: Run complete, exiting.
2017-04-06T10:34:02.5924134Z 06 04 2017 10:34:02.591:DEBUG [launcher]: Disconnecting all browsers
2017-04-06T10:34:02.5924134Z 06 04 2017 10:34:02.591:DEBUG [framework.browserify]: cleaning up
2017-04-06T10:34:02.7302965Z 06 04 2017 10:34:02.730:DEBUG [launcher]: Killed extra IE process 3836
2017-04-06T10:34:02.7302965Z 06 04 2017 10:34:02.730:DEBUG [launcher]: Process IE exited with code 0
2017-04-06T10:34:02.7302965Z 06 04 2017 10:34:02.730:DEBUG [temp-dir]: Cleaning temp dir C:\a\_temp\karma-21176931
2017-04-06T10:34:02.7332997Z [10:34:02] Karma run complete
2017-04-06T10:34:02.7342972Z [10:34:02] Finished 'karma-server' after 1.37 min
2017-04-06T10:34:02.7342972Z [10:34:02] Starting 'test-server'...
2017-04-06T10:34:02.7342972Z [10:34:02] Finished 'test-server' after 4.1 渭s

Not convinced this is a Karma problem specifically anymore but any help anyone can offer would be appreciated.

Apologies. Found that, despite the log indicating it was finding it, that some of the build agents seem to fall over unless you provide the following environment variable...

PHANTOMJS_BIN - C:\NPM\Modules\PhantomJS.cmd

@tiefling Could you kindly explain in more detail what helped you to resolve the issue? I am trying to fire off an angular-cli boilerplate application tests in Visual Studio Team Services and "Cannot capture PhantomJS in 60000ms". :)

You need to add the environment variable...

PHANTOMJS_BIN: C:\NPM\Modules\PhantomJS.cmd

to the 'Variables' section of the build configuration and you should find that will fix it. Not the most intuitive.

Hello, I just wanted to let @tiefling know that I ran into the same issue on VST. The Solution was to add the PHANTOMJS_BIN information above into the build definition "Variables" tab. Worked like a charm. I am using the latest version of Karma for this.

2017-06-01_0950

this does not solve the problem in my case, unfortunately.
Still investigating what might be the culprit.

This is broken again... Adding a variable seems like a workaround rather than a fix, though I suspect this is actually an issue with the Agent Image, seeing as PhantomJS works fine locally...

After seeing yet other errors with PhantomJS and karma I recently switched to pupeteer (chrome headless) and so far I have no issues. Neither local nor in Visual Studio Online.

I just don't have the ressources to debug and find errors when other packages provide everything I need.

@FizzBuzz791 Did you end up finding a solution to this?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

kiramclean picture kiramclean  路  4Comments

mboughaba picture mboughaba  路  3Comments

schippie picture schippie  路  5Comments

wellyshen picture wellyshen  路  4Comments

HerrDerb picture HerrDerb  路  5Comments