UNPKG

@fakes/media-devices

Version:

A interactive fake implementation of MediaDevices interface in the browser for testing

7 lines (6 loc) 280 B
import { ThrowingNotImplemented } from './not-implemented'; import { DefaultReporter } from './reporter'; export const defaultContext = () => { const reporter = new DefaultReporter(); return { notImplemented: new ThrowingNotImplemented(reporter), reporter: reporter }; };