e2ed
Version:
E2E testing framework over Playwright
14 lines (13 loc) • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resizeWindow = void 0;
const log_1 = require("../utils/log");
/**
* Set the browser window size.
*/
const resizeWindow = (width, height) => {
(0, log_1.log)(`Set the browser window size to width ${width} and height ${height}`, 5 /* LogEventType.InternalAction */);
// TODO
return Promise.resolve();
};
exports.resizeWindow = resizeWindow;