fix failing unit tests for template editor

This commit is contained in:
Mads Rasmussen
2017-03-24 11:35:44 +01:00
parent fcc0c452bb
commit 9650d314c6

View File

@@ -49,7 +49,11 @@
setValue: function() {},
focus: function() {},
clearSelection: function() {},
navigateFileStart: function() {}
navigateFileStart: function() {},
commands: {
bindKey: function() {},
addCommands: function() {}
}
};
controller = createController();
@@ -107,7 +111,10 @@
getInsertPartialSnippet: function() { return ""; },
getQuerySnippet: function() { return ""; },
getRenderBodySnippet: function() { return ""; },
getRenderSectionSnippet: function() { return ""; }
getRenderSectionSnippet: function() { return ""; },
getGeneralShortcuts: function() { return ""; },
getEditorShortcuts: function() { return ""; },
getTemplateEditorShortcuts: function() { return ""; }
}
});
}