mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
0facd341a6
## Problem We used to have a `_Shadcn_` suffix for all the shadcn form components because we also had `formik` form components. This is not needed anymore. ## Solution - Remove the suffix - Update all usages
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import { render, screen } from '@testing-library/react'
|
|
import userEvent from '@testing-library/user-event'
|
|
import { useForm } from 'react-hook-form'
|
|
import { Form } from 'ui'
|
|
import { describe, expect, it } from 'vitest'
|
|
|
|
import { type WebhookFormValues } from './EditHookPanel.constants'
|
|
import { HTTPParameters } from './HTTPParameters'
|
|
|
|
const HTTPParametersHarness = () => {
|
|
const form = useForm<WebhookFormValues>({
|
|
defaultValues: {
|
|
name: 'test-hook',
|
|
table_id: 'public.messages',
|
|
http_method: 'POST',
|
|
timeout_ms: 1000,
|
|
events: ['INSERT'],
|
|
function_type: 'http_request',
|
|
http_url: 'https://hooks.example.com/webhook',
|
|
httpHeaders: [],
|
|
httpParameters: [{ id: 'param-1', name: 'tenant', value: 'prod' }],
|
|
},
|
|
})
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<HTTPParameters form={form} />
|
|
</Form>
|
|
)
|
|
}
|
|
|
|
describe('HTTPParameters', () => {
|
|
it('appends a new parameter row', async () => {
|
|
const user = userEvent.setup()
|
|
|
|
render(<HTTPParametersHarness />)
|
|
|
|
await user.click(screen.getByRole('button', { name: 'Add a new parameter' }))
|
|
|
|
expect(screen.getAllByPlaceholderText('Parameter name')).toHaveLength(2)
|
|
expect(screen.getAllByPlaceholderText('Parameter value')).toHaveLength(2)
|
|
})
|
|
|
|
it('removes an existing parameter row', async () => {
|
|
const user = userEvent.setup()
|
|
|
|
render(<HTTPParametersHarness />)
|
|
|
|
expect(screen.getByDisplayValue('tenant')).toBeInTheDocument()
|
|
|
|
await user.click(screen.getByRole('button', { name: 'Remove parameter' }))
|
|
|
|
expect(screen.queryByDisplayValue('tenant')).not.toBeInTheDocument()
|
|
})
|
|
})
|