mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
24 lines
593 B
TypeScript
24 lines
593 B
TypeScript
import '@testing-library/jest-dom/vitest';
|
|
import { cleanup } from '@testing-library/react';
|
|
import axe from 'axe-core';
|
|
import { afterEach } from 'vitest';
|
|
|
|
axe.configure({
|
|
checks: [
|
|
{
|
|
// Disable color contrast checking, as it doesn't work in jsdom
|
|
id: 'color-contrast',
|
|
enabled: false,
|
|
},
|
|
],
|
|
});
|
|
|
|
// Clear all mocks and cleanup DOM after every test
|
|
afterEach(() => {
|
|
vi.clearAllMocks();
|
|
cleanup();
|
|
});
|
|
|
|
HTMLCanvasElement.prototype.getContext = (() => {}) as any;
|
|
(global as any).scrollTo = () => {};
|
|
(global as any).matchMedia = () => ({ matches: false });
|