mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-30 23:30:38 +02:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
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(),
|
|
}));
|