We have our up and running karma test suite for our angular application. All tests are green for chrome. Now I have to fix a test which is failing for IE 11. The exception I get is the following:
TypeError: Object doesn't support this action
at createEventWithKeycode (http://localhost:9876/_karma_webpack_/main.bundle.js:3574:5)
at Anonymous function (http://localhost:9876/_karma_webpack_/main.bundle.js:3115:13)
at Anonymous function (http://localhost:9876/_karma_webpack_/vendor.bundle.js:74994:17)
at ZoneDelegate.prototype.invoke (http://localhost:9876/_karma_webpack_/polyfills.bundle.js:10531:13)
at ProxyZoneSpec.prototype.onInvoke (http://localhost:9876/_karma_webpack_/vendor.bundle.js:26806:13)
at ZoneDelegate.prototype.invoke (http://localhost:9876/_karma_webpack_/polyfills.bundle.js:10531:13)
at Zone.prototype.run (http://localhost:9876/_karma_webpack_/polyfills.bundle.js:10283:17)
at Anonymous function (http://localhost:9876/_karma_webpack_/vendor.bundle.js:26503:13)
What I understand is that the test case is creating an angular component for testing with the help of angulars TestBed class. With some magic code we get the input component itself and run a keydown event on it:
inputComponent.onKeyDownInput(event);
But when I run the code in IE the exception occurs already when I try to create the event object with the following code:
const event = new KeyboardEvent('keydown', { //This triggers the exception
bubbles: true,
cancelable: true,
shiftKey: true
});
The KeyboardEvent Object is defined in a typings file lib.es6.d.ts:
declare var KeyboardEvent: {
prototype: KeyboardEvent;
new(typeArg: string, eventInitDict?: KeyboardEventInit): KeyboardEvent;
readonly DOM_KEY_LOCATION_JOYSTICK: number;
readonly DOM_KEY_LOCATION_LEFT: number;
readonly DOM_KEY_LOCATION_MOBILE: number;
readonly DOM_KEY_LOCATION_NUMPAD: number;
readonly DOM_KEY_LOCATION_RIGHT: number;
readonly DOM_KEY_LOCATION_STANDARD: number;
}
Can someone pls give some light on this issue? Pls remember that everything is working with chrome - only IE doesn't behave!
If anybody comes across this, I was able to get the below to work
Edit: Adding info about the Key object
Edit #2: Adding
isBrowser
function