mirror of
https://github.com/run-llama/pdf-viewer.git
synced 2026-07-01 21:34:02 -04:00
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
import { afterEach } from 'vitest';
|
|
import { cleanup } from '@testing-library/react';
|
|
import '@testing-library/jest-dom/vitest';
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|
|
|
|
document.body.style.setProperty('--react-pdf-annotation-layer', '1');
|
|
document.body.style.setProperty('--react-pdf-text-layer', '1');
|