I was able to successfully run a test in IE11 by tinkering with the settings following the accepted answer here:
Not able to launch IE browser using Selenium2 (Webdriver) with Java
I am trying to run it in parallel browsers. I managed to get Firefox + Chrome to work but not Firefox + IE11.
conf.js:
// parallel - firefox and ie11
exports.config = {
framework: 'jasmine',
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
multiCapabilities: [{
browserName: 'firefox',
firefoxPath: 'C:/Program Files/Mozilla Firefox/firefox.exe'
}, {
browserName: 'internet explorer',
platform: 'ANY',
version: '11'
}],
directConnect: true
}