@testim/testim-cli
Version:
Command line interface for running Testing on you CI
21 lines (20 loc) • 394 B
JavaScript
/**
*
* End the session and close browser.
*
* <example>
:end.js
client
.init() // starts session and opens the browser
.url('http://google.com')
// ... other commands
.end(); // ends session and close browser
* </example>
*
* @uses protocol/session
* @type utility
*
*/
module.exports = function end () {
return this.session('delete');
};