import { describe, test, expect } from 'vitest'
import { render, screen } from '@testing-library/react'
import { ChatThinking } from './chat-thinking'
describe('ChatThinking', () => {
test('renders default thinking text', () => {
render()
expect(screen.getByText('Thinking...')).toBeTruthy()
})
test('renders custom text', () => {
render(Processing your request...)
expect(screen.getByText('Processing your request...')).toBeTruthy()
})
})