diff --git a/tests/ext/plugins/Custom Elements Example/components/reactcomponent.js b/tests/ext/plugins/Render Example/components/reactcomponent.js similarity index 100% rename from tests/ext/plugins/Custom Elements Example/components/reactcomponent.js rename to tests/ext/plugins/Render Example/components/reactcomponent.js diff --git a/tests/ext/plugins/Custom Elements Example/components/vuecomponent.js b/tests/ext/plugins/Render Example/components/vuecomponent.js similarity index 100% rename from tests/ext/plugins/Custom Elements Example/components/vuecomponent.js rename to tests/ext/plugins/Render Example/components/vuecomponent.js diff --git a/tests/ext/plugins/Custom Elements Example/config.json b/tests/ext/plugins/Render Example/config.json similarity index 70% rename from tests/ext/plugins/Custom Elements Example/config.json rename to tests/ext/plugins/Render Example/config.json index daac514d..ea3abb01 100644 --- a/tests/ext/plugins/Custom Elements Example/config.json +++ b/tests/ext/plugins/Render Example/config.json @@ -1,7 +1,7 @@ { "info": { - "id": "custom-elements", - "name": "Custom Elements Example", + "id": "render-example", + "name": "Render Example", "authors": [ { "name": "Jiiks", @@ -11,7 +11,7 @@ } ], "version": 1.0, - "description": "Custom Elements Description" + "description": "Example for rendering stuff" }, "main": "index.js" } diff --git a/tests/ext/plugins/Custom Elements Example/index.js b/tests/ext/plugins/Render Example/index.js similarity index 97% rename from tests/ext/plugins/Custom Elements Example/index.js rename to tests/ext/plugins/Render Example/index.js index f54c8bda..60297e5d 100644 --- a/tests/ext/plugins/Custom Elements Example/index.js +++ b/tests/ext/plugins/Render Example/index.js @@ -16,7 +16,6 @@ module.exports = (Plugin, Api, Vendor) => { return class extends Plugin { async onStart() { - Logger.log('Custom Elements Example Started'); this.injectStyle(); this.patchGuildTextChannel(); this.patchMessages(); @@ -24,7 +23,6 @@ module.exports = (Plugin, Api, Vendor) => { } async onStop() { - Logger.log('Custom Elements Example Stopped'); // The automatic unpatcher is not there yet Patcher.unpatchAll(); CssUtils.deleteAllStyles();