diff --git a/src/pages/_index.vue b/src/pages/_index.vue
deleted file mode 100644
index 91a43b2..0000000
--- a/src/pages/_index.vue
+++ /dev/null
@@ -1,55 +0,0 @@
-
diff --git a/test/__snapshots__/component.test.ts.snap b/test/__snapshots__/component.test.ts.snap
deleted file mode 100644
index ea4d47c..0000000
--- a/test/__snapshots__/component.test.ts.snap
+++ /dev/null
@@ -1,3 +0,0 @@
-// Vitest Snapshot v1
-
-exports[`TheCounter.vue > should render 1`] = `"
10
"`;
diff --git a/test/component.test.ts b/test/component.test.ts
deleted file mode 100644
index a5bc63e..0000000
--- a/test/component.test.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { mount } from '@vue/test-utils'
-import { describe, expect, it } from 'vitest'
-import TheCounter from '../src/components/TheCounter.vue'
-
-describe('TheCounter.vue', () => {
- it('should render', () => {
- const wrapper = mount(TheCounter, { props: { initial: 10 } })
- expect(wrapper.text()).toContain('10')
- expect(wrapper.html()).toMatchSnapshot()
- })
-
- it('should be interactive', async () => {
- const wrapper = mount(TheCounter, { props: { initial: 0 } })
- expect(wrapper.text()).toContain('0')
-
- expect(wrapper.find('.inc').exists()).toBe(true)
-
- expect(wrapper.find('.dec').exists()).toBe(true)
-
- await wrapper.get('.inc').trigger('click')
-
- expect(wrapper.text()).toContain('1')
-
- await wrapper.get('.dec').trigger('click')
-
- expect(wrapper.text()).toContain('0')
- })
-})