12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
import { jest } from '@jest/globals';
|
|
import React from 'react';
|
|
|
|
jest.mock('@pbe/react-yandex-maps', () => ({
|
|
YMaps: jest.fn(() => <></>),
|
|
Map: jest.fn(() => <></>),
|
|
Placemark: jest.fn(() => <></>),
|
|
GeolocationControl: jest.fn(() => <></>),
|
|
ZoomControl: jest.fn(() => <></>),
|
|
withYMaps: jest.fn(() => <></>),
|
|
}));
|