2023-08-15 10:53:28 +03:00
|
|
|
import '@testing-library/jest-dom/vitest';
|
2023-05-27 12:36:18 +03:00
|
|
|
import { cleanup } from '@testing-library/react';
|
2023-09-30 11:20:28 +03:00
|
|
|
import axe from 'axe-core';
|
2023-08-15 10:53:28 +03:00
|
|
|
import { afterEach } from 'vitest';
|
2023-05-27 12:36:18 +03:00
|
|
|
|
2023-09-30 11:20:28 +03:00
|
|
|
axe.configure({
|
|
|
|
checks: [
|
|
|
|
{
|
|
|
|
// Disable color contrast checking, as it doesn't work in jsdom
|
|
|
|
id: 'color-contrast',
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
2023-08-14 13:15:57 +03:00
|
|
|
// Clear all mocks and cleanup DOM after every test
|
2023-05-27 12:36:18 +03:00
|
|
|
afterEach(() => {
|
2023-05-27 13:29:03 +03:00
|
|
|
vi.clearAllMocks();
|
2023-05-27 12:36:18 +03:00
|
|
|
cleanup();
|
|
|
|
});
|
|
|
|
|
2023-12-09 13:23:22 +03:00
|
|
|
HTMLCanvasElement.prototype.getContext = (() => {}) as any;
|
2023-05-27 12:36:18 +03:00
|
|
|
(global as any).scrollTo = () => {};
|
2023-12-19 01:05:17 +03:00
|
|
|
(global as any).matchMedia = () => ({ matches: false });
|