UNPKG

contacts-pane

Version:

Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.

11 lines (7 loc) 285 B
import "@testing-library/jest-dom"; import fetchMock from "jest-fetch-mock"; fetchMock.enableMocks(); // Polyfill for encoding which isn't present globally in jsdom import { TextEncoder, TextDecoder } from 'util'; global.TextEncoder = TextEncoder; global.TextDecoder = TextDecoder;