tia
Version:
Time is All (logs driven test engine with ExtJs support)
42 lines • 1.05 kB
JavaScript
;
// Default suite config.
// These options are not overrided by directories configs.
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Should TIA write info about directories without tests (or with skip: true) into summary log.
*/
exports.emptyDirToSuiteLog = false;
/**
* IF true - TIA prints detailed log with timings to stdout.
*/
exports.suiteLogToStdout = true;
/**
* Need you to attach zip with test dir to the mail.
*/
exports.attachArchiveToMail = true;
/**
* Only diffs in attachment?
*/
exports.attachOnlyDiffs = true;
/**
* Remove zip after sending mail.
*/
exports.removeZipAfterSend = true;
/**
* Note: use tia-suite-config.js to specify email parameters.
* To whom TIA should send emails.
*/
exports.mailRecipientList = '';
/**
* smtp host, e.g. smtp.yandex.ru
*/
exports.mailSmtpHost = '';
/**
* user to send mail on behalf of.
*/
exports.mailUser = '';
/**
* password of the user to send mail on behalf of.
*/
exports.mailPassword = '';
//# sourceMappingURL=default-suite-config.js.map