UNPKG

@testwizard/commands-video

Version:

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