Fix tests

This commit is contained in:
Daniel Imms
2016-07-15 10:22:31 -07:00
parent fedc1fd325
commit a3a7017f6b
+6 -1
View File
@@ -88,7 +88,12 @@ describe('xterm.js', function() {
xterm.showCursor = function() {};
xterm.clearSelection = function() {};
xterm.compositionHelper = {
isComposing: false
isComposing: false,
keydown: {
bind: function() {
return function() { return true; };
}
}
};
});