mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
2c47d90f34
* chore(lint): configure project-wide linter * chore(lint): improve linting in files * chore(lint): hide warnings in CI
12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';
|
|
|
|
import 'vitest';
|
|
|
|
// ugly hack because vite and pnpm are not playing ball with jest
|
|
// https://github.com/testing-library/jest-dom/issues/123
|
|
declare global {
|
|
namespace Vi {
|
|
type Assertion<T = any> = TestingLibraryMatchers<T, void>;
|
|
}
|
|
}
|