diff --git a/_src /test/app/App.html b/_src /test/app/App.html
deleted file mode 100644
index 7e5298d98..000000000
--- a/_src /test/app/App.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/_src /test/app/App.js b/_src /test/app/App.js
deleted file mode 100644
index b1c6ea436..000000000
--- a/_src /test/app/App.js
+++ /dev/null
@@ -1 +0,0 @@
-export default {}
diff --git a/_src /test/app/App.scss b/_src /test/app/App.scss
deleted file mode 100644
index 813621acc..000000000
--- a/_src /test/app/App.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Not the prettiest way, but I need it to work now */
-@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Work+Sans:wght@400;500;700&display=swap');
-// @import '../../../assets/styles/_globals.scss';
-// @import '../../../assets/styles/_reset.scss';
-// @import '../../../assets/styles/_focus-visible.scss';
-// @import '../../../assets/styles/transitions/_fade.scss';
-// @import '../../../assets/styles/transitions/_slide-up.scss';
-// @import '../../../assets/styles/transitions/_slide-right.scss';
-// @import '../../../assets/styles/transitions/_slide-down.scss';
-// @import '../../../assets/styles/transitions/_slide-left.scss';
-
-@import "tailwindcss/base";
-@import "tailwindcss/components";
-@import "tailwindcss/utilities";
diff --git a/_src /test/app/App.vue b/_src /test/app/App.vue
deleted file mode 100644
index 5ea3b5bc4..000000000
--- a/_src /test/app/App.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
diff --git a/_src /test/button/Button.html b/_src /test/button/Button.html
deleted file mode 100644
index 18e595fa6..000000000
--- a/_src /test/button/Button.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
diff --git a/_src /test/button/Button.js b/_src /test/button/Button.js
deleted file mode 100644
index 5e1e33d65..000000000
--- a/_src /test/button/Button.js
+++ /dev/null
@@ -1,2 +0,0 @@
-// @vue/component
-export default {}
diff --git a/_src /test/button/Button.scss b/_src /test/button/Button.scss
deleted file mode 100644
index 1f2c52bc2..000000000
--- a/_src /test/button/Button.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-.btn {
- @apply bg-dark text-white px-4 h-12;
-}
-
-.btn:hover {
- @apply text-gray-300;
-}
-
-.btn--secondary {
- @apply bg-primary text-primary border-2 border-dark;
-}
-
-.btn--secondary:hover {
- @apply bg-dark text-white;
-}
diff --git a/_src /test/button/Button.selectors.json b/_src /test/button/Button.selectors.json
deleted file mode 100644
index 54e16f6b3..000000000
--- a/_src /test/button/Button.selectors.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
- {
- "name": ".a-button--secondary",
- "description": "Selector for applying secondary styles"
- },
- {
- "name": ".a-button--blank",
- "description": "Selector for applying blank styles"
- },
- {
- "name": ".a-button--fluid",
- "description": "Selector for applying fluid styles (width: 100%)"
- }
-]
diff --git a/_src /test/button/Button.stories.js b/_src /test/button/Button.stories.js
deleted file mode 100644
index 2ac9a1ea3..000000000
--- a/_src /test/button/Button.stories.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import { storiesOf } from '@storybook/vue'
-import { select, text } from '@storybook/addon-knobs'
-
-import generateVueInfoTable from '@utils/helpers/generate-vue-info-table.js'
-import getClassKnobsConfig from '@utils/helpers/get-class-knobs-config.js'
-import selectorsConfig from './Button.selectors.json'
-
-import AButton from './Button.vue'
-
-const info = `
- Check Knobs tab to edit component properties dynamically.
- ${generateVueInfoTable(selectorsConfig, 'BEM modifiers')}
-`
-
-const classKnobsConfig = getClassKnobsConfig(selectorsConfig)
-
-storiesOf('Test/Button', module)
- .addParameters({ info })
- .add('Default', () => ({
- components: { AButton },
- props: {
- classKnobs: {
- default: select('BEM Modifier', classKnobsConfig)
- },
- textKnobs: {
- default: text('Text', 'Button text')
- }
- },
- template: `
-
- {{ textKnobs }}
-
- `
- }))
diff --git a/_src /test/button/Button.vue b/_src /test/button/Button.vue
deleted file mode 100644
index 6c8689436..000000000
--- a/_src /test/button/Button.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-