diff --git a/test-unit/components/Logo.vue.spec.js b/test-unit/components/Logo.vue.spec.js deleted file mode 100644 index 83bc4037..00000000 --- a/test-unit/components/Logo.vue.spec.js +++ /dev/null @@ -1,24 +0,0 @@ -// Import the required libraries -import { mount } from '@vue/test-utils'; -import Logo from '~/components/Logo.vue'; - -// Describe the test suite -describe('Logo', () => { - // Test if the component renders correctly - it('renders the component', () => { - const wrapper = mount(Logo); - expect(wrapper.exists()).toBe(true); - }); - - // You can add more specific tests for your component's behavior here - // For example, testing the presence and styling of individual triangles - - it('contains four triangles with correct styling', () => { - const wrapper = mount(Logo); - const triangles = wrapper.findAll('.Triangle'); - - expect(triangles).toHaveLength(4); - }); - - // Add more tests as needed -});