UNPKG

suitest-js-api

Version:

Suitest is a test automation and device manipulation tool for living room devices and web browsers.

12 lines (8 loc) 235 B
/* istanbul ignore file */ const mockSpawn = require('mock-spawn'); const cp = require('child_process'); const spawn = {...cp.spawn}; module.exports = { mock: () => cp.spawn = mockSpawn(), restore: () => cp.spawn = {...spawn}, };