diff --git a/frontend-js/testFiles/plugin/empty.js b/frontend-js/testFiles/plugin/empty.js new file mode 100644 index 0000000000000000000000000000000000000000..a3fd24885e527b3933a46efdf362b82fbd403fbf --- /dev/null +++ b/frontend-js/testFiles/plugin/empty.js @@ -0,0 +1,16 @@ +define(function () { + return { + register: function (object) { + console.log("registering test plugin"); + }, + unregister: function () { + console.log("unregistering test plugin"); + }, + getName: function () { + return "test plugin"; + }, + getVersion: function () { + return "0.0.1"; + } + }; +}); \ No newline at end of file