UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

19 lines (16 loc) 463 B
/** * * List all available engines on the machine. To use an engine, it has to be present * in this list. * * @returns {Object[]} engines A list of available engines * * @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/ime/available_engines * @type protocol * */ module.exports = function imeAvailableEngines () { return this.requestHandler.create( '/session/:sessionId/ime/available_engines' ); };