tia
Version:
Time is All (logs driven test engine with ExtJs support)
17 lines • 417 B
JavaScript
;
/* globals gIn: true */
Object.defineProperty(exports, "__esModule", { value: true });
/*
Utilities for tests.
*/
/**
* Sets the test title.
* @param title
*/
function setTitle(title) {
gIn.tInfo.setTitle(title); // TODO: From global sandbox.
gIn.logger.logln('=================');
gIn.logger.logBold(`Title: ${title}\n`);
}
exports.setTitle = setTitle;
//# sourceMappingURL=test.js.map