From a3c86dbdff661303a5b3e1957f485eca2eae2414 Mon Sep 17 00:00:00 2001 From: Bertrand Yuan <189593334+bertyuan@users.noreply.github.com> Date: Tue, 7 Apr 2026 11:24:26 +0800 Subject: Revert "A small portion of newly added unit testing code" --- src/components/ui/input.test.tsx | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/components/ui/input.test.tsx') diff --git a/src/components/ui/input.test.tsx b/src/components/ui/input.test.tsx index 036352b..aabe76f 100644 --- a/src/components/ui/input.test.tsx +++ b/src/components/ui/input.test.tsx @@ -1,8 +1,6 @@ import { render, screen } from '@testing-library/react'; import { describe, expect, test } from 'vitest'; import { Input } from './input'; -import userEvent from '@testing-library/user-event'; -import { vi } from 'vitest'; describe('Input', () => { test('renders an input with the expected slot attribute', () => { @@ -20,19 +18,5 @@ describe('Input', () => { expect(input).toHaveAttribute('type', 'password'); expect(input).toBeDisabled(); }); - - test('handles user typing and triggers onChange event', async () => { - const user = userEvent.setup(); - const handleChange = vi.fn(); - - render(); - const input = screen.getByLabelText('Username'); - - await user.type(input, 'hello world'); - - expect(input).toHaveValue('hello world'); - expect(handleChange).toHaveBeenCalled(); - expect(handleChange).toHaveBeenCalledTimes(11); - }); }); -- cgit v1.2.3