From a800e638e21d8a49cd4c22f16e1a1fbd08a15c36 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Wed, 25 Oct 2017 10:18:21 +0200
Subject: [PATCH] missing test file

---
 frontend-js/testFiles/plugin/empty.js | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 frontend-js/testFiles/plugin/empty.js

diff --git a/frontend-js/testFiles/plugin/empty.js b/frontend-js/testFiles/plugin/empty.js
new file mode 100644
index 0000000000..a3fd24885e
--- /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
-- 
GitLab