import { Label } from '@/components/ui/label'; import { Checkbox } from '@/components/ui/checkbox'; import { FlaskConical } from 'lucide-react'; interface TestingTabContentProps { skipTests: boolean; onSkipTestsChange: (skipTests: boolean) => void; testIdPrefix?: string; } export function TestingTabContent({ skipTests, onSkipTestsChange, testIdPrefix = '', }: TestingTabContentProps) { const checkboxId = testIdPrefix ? `${testIdPrefix}-skip-tests` : 'skip-tests'; return (
onSkipTestsChange(checked !== true)} data-testid={`${testIdPrefix ? testIdPrefix + '-' : ''}skip-tests-checkbox`} />

When enabled, the agent will use Playwright to verify the feature works correctly before marking it as verified. When disabled, manual verification will be required.

); }