mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-27 15:20:49 +02:00
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import '@testing-library/jest-dom';
|
|
import '@testing-library/jest-dom';
|
|
import { configure } from '@testing-library/vue';
|
|
|
|
configure({ testIdAttribute: 'data-test-id' });
|
|
|
|
window.ResizeObserver =
|
|
window.ResizeObserver ||
|
|
vi.fn().mockImplementation(() => ({
|
|
disconnect: vi.fn(),
|
|
observe: vi.fn(),
|
|
unobserve: vi.fn(),
|
|
}));
|