UNPKG

@testwizard/commands-video

Version:

20 lines (14 loc) 562 B
'use strict'; const Commands = require('@testwizard/commands-core'); const Result = Commands.ResultForOk; class CaptureReferenceBitmapCommand extends Commands.CommandBase { constructor(testObject) { super(testObject, 'CaptureReferenceBitmap'); } async execute() { const requestObj = []; const json = await this.executeCommand(requestObj); return new Result(json, 'captureReferenceBitmap was successful', 'captureReferenceBitmap failed'); } } module.exports = CaptureReferenceBitmapCommand;