mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
no issue - micro-refactor that came out of a bigger draft-replies refactor, splitting out early to keep main change cleaner - adjusted nested ternary style and naming to improve clarity - added unit tests to ensure the logic behaviour stayed consistent - cleaned up useless dummy unit test file
17 lines
497 B
TypeScript
17 lines
497 B
TypeScript
import {afterEach} from 'vitest';
|
|
import {cleanup} from '@testing-library/react';
|
|
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
|
// allows you to do things like:
|
|
// expect(element).toHaveTextContent(/react/i)
|
|
// learn more: https://github.com/testing-library/jest-dom
|
|
import '@testing-library/jest-dom';
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|
|
|
|
global.ResizeObserver = vi.fn().mockImplementation(() => ({
|
|
observe: vi.fn(),
|
|
unobserve: vi.fn(),
|
|
disconnect: vi.fn()
|
|
}));
|