Simon Hunt

GUI -- removed commented out tests.

Change-Id: I3b37263edefbf947846dd2f9b2d7cbd4295e0c0f
......@@ -115,6 +115,7 @@
function quickHelp(view, key, code, ev) {
// TODO: show quick help
// delegate to QuickHelp service.
//libApi.quickHelp.show(keyHandler);
console.log('QUICK-HELP');
return true;
......@@ -122,6 +123,7 @@
function escapeKey(view, key, code, ev) {
// TODO: plumb in handling of alerts and quick help dismissal
// We will delegate to the Alert / QuickHelp Services as appropriate.
/*
if (alerts.open) {
closeAlerts();
......
......@@ -77,18 +77,6 @@ describe('factory: fw/util/keys.js', function() {
element.dispatchEvent(ev);
}
// === Theme related tests
// TODO: fix these tests once we have ThemeService
/*
it('should start in light theme', function () {
expect(ks.theme()).toEqual('light');
});
it('should toggle to dark theme', function () {
jsKeyDown(elem, 84); // 'T'
expect(ks.theme()).toEqual('dark');
});
*/
// === Key binding related tests
it('should start with default key bindings', function () {
var state = ks.keyBindings(),
......