-
Notifications
You must be signed in to change notification settings - Fork 34k
Open
Description
- Copilot Chat Extension Version: 2025-07-22, 18:21:34
- VS Code Version: 1.102.1
- OS Version: 15.5 (24F74)
- Feature (e.g. agent/edit/ask mode): agent
- Selected model (e.g. GPT 4.1, Claude 3.7 Sonnet): Claude 4, GPT 4.1
- Logs:
cat > src/molecules/RecipeCard/RecipeCard.test.tsx << 'EOF'
import { describe, it, expect, vi } from 'vitest';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { RecipeCard } from './RecipeCard';
import { recipes } from '@nutrition/seeds';
const mockRecipe = recipes[0];
describe('RecipeCard', () => {
it('renders recipe information correctly', () => {
render(<RecipeCard recipe={mockRecipe} />);
expect(screen.getByText(mockRecipe.name)).toBeInTheDocument();
if (mockRecipe.description) {
expect(screen.getByText(mockRecipe.description)).toBeInTheDocument();
}
});
// many more lines
});
EOF
Steps to Reproduce:
- Let the agent write a longer file and add it with EOF in the terminal
- Terminal freezes and shows red disconnected icons, agent keeps waiting for the terminal
Metadata
Metadata
Assignees
Labels
No labels