UNPKG

jest-wake-lock-mock

Version:

Mock Screen Wake Lock API `navigator.wakeLock` with ease and run your tests using Jest

8 lines (6 loc) 203 B
import { WakeLockSentinel } from './WakeLock'; Object.defineProperty(global.window.navigator, 'wakeLock', { value: { request: jest.fn((type: WakeLockType) => new WakeLockSentinel(type)), }, });