diff --git a/src/__tests__/ui.test.tsx b/src/__tests__/ui.test.tsx deleted file mode 100644 index 702f5b8..0000000 --- a/src/__tests__/ui.test.tsx +++ /dev/null @@ -1,216 +0,0 @@ -import '@testing-library/jest-dom'; -import React from 'react'; -import { Route } from 'react-router-dom'; -import { describe, expect, it, vi } from 'vitest'; - -import { - Button, - Checkbox, - Dialog, - DialogClose, - DialogContent, - DialogDescription, - DialogFooter, - DialogHeader, - DialogTitle, - DialogToggle, - Dropdown, - DropdownContent, - DropdownDivider, - DropdownItem, - DropdownLabel, - DropdownShortcut, - DropdownToggle, - Form, - Input, - InputDesc, - InputGroup, - Label, - Textarea, -} from '../'; -import { MockRouter, fireEvent, render, screen, waitFor } from '../libs/test'; - -describe('UI test', () => { - it('Fill out the Input and Textarea and submit the Form', async () => { - const handleSubmitFn = vi.fn().mockImplementation(e => e.preventDefault()); - - render( - - - - - - - - -