feat(ui): Implement in-place message editing with re-response (#3798)

Co-authored-by: Zane Staggs <zane@squareup.com>
This commit is contained in:
Bright Zheng
2025-08-19 11:22:57 -04:00
committed by GitHub
parent 73e4839c4a
commit e5075ea180
7 changed files with 432 additions and 37 deletions
+8 -1
View File
@@ -1,5 +1,12 @@
import '@testing-library/jest-dom';
import { vi } from 'vitest';
import { vi, afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
// This is the standard setup to ensure that React Testing Library's
// automatic cleanup runs after each test.
afterEach(() => {
cleanup();
});
// Mock console methods to avoid noise in tests
// eslint-disable-next-line no-undef