diff --git a/test/files/test-1.md b/test/files/test-1.md
deleted file mode 100644
index d56de7385..000000000
--- a/test/files/test-1.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: This is a test
-description: Once upon a time...
----
-# Title of my great post
-Lorem ipsum dolor...
- console.log('testing');
-```
-this.mar('something')
-```
diff --git a/test/files/test-md.html b/test/files/test-md.html
deleted file mode 100644
index a957e7531..000000000
--- a/test/files/test-md.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
Title of my great post
-
-Lorem ipsum dolor...
-<code> console.log('testing'); </code>
-
-this.mar('something')
-
\ No newline at end of file
diff --git a/testPlgin/coulson.custom.js b/testPlgin/coulson.custom.js
deleted file mode 100644
index 577cf7091..000000000
--- a/testPlgin/coulson.custom.js
+++ /dev/null
@@ -1,12 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-const coulson_1 = require("@herodevs/coulson");
-coulson_1.startCoulson({
- routes: {
- '/test': {
- type: coulson_1.RouteTypes.contentFolder,
- contentFolder: 'test',
- },
- },
-});
-//# sourceMappingURL=coulson.custom.js.map
\ No newline at end of file
diff --git a/testPlgin/coulson.custom.js.map b/testPlgin/coulson.custom.js.map
deleted file mode 100644
index 9b57746cb..000000000
--- a/testPlgin/coulson.custom.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"coulson.custom.js","sourceRoot":"","sources":["coulson.custom.ts"],"names":[],"mappings":";;AAAA,+CAA0E;AAE1E,sBAAY,CAAE;IACZ,MAAM,EAAE;QACN,OAAO,EAAE;YACP,IAAI,EAAE,oBAAU,CAAC,aAAa;YAC9B,aAAa,EAAE,MAAM;SACtB;KACF;CAC2B,CAAC,CAAC"}
\ No newline at end of file
diff --git a/testPlgin/coulson.custom.ts b/testPlgin/coulson.custom.ts
deleted file mode 100644
index 810ba66aa..000000000
--- a/testPlgin/coulson.custom.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import {ScullyConfig, RouteTypes, startScully, registerPlugin, HandledRoute} from '@scullyio/scully';
-
-registerPlugin('router', 'someName', async (route, configFromScullyDotJson) => [{route, type: 'someName'} as HandledRoute]);
-
-startScully();
diff --git a/testPlgin/tsconfig.custom-coulson.json b/testPlgin/tsconfig.custom-coulson.json
deleted file mode 100644
index 63d652540..000000000
--- a/testPlgin/tsconfig.custom-coulson.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "compileOnSave": false,
- "compilerOptions": {
- "declaration": false,
- "baseUrl": "./",
- "downlevelIteration": true,
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "importHelpers": true,
- "lib": ["es2018", "dom"],
- "module": "CommonJS",
- "moduleResolution": "Node",
- "sourceMap": true,
- "target": "es2018",
- "types": ["node"],
- "typeRoots": ["../node_modules/@types"],
- "paths": {
- "*": ["node_modules/*"],
- "@herodevs/scully": ["../scully"]
- }
- },
- "files": [ "scully.custom.ts"],
- "exclude": ["./bin/**/*"]
-}