Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
console[type] = function() {
var util = require('titanium/util'),
args = Array.prototype.slice.call(arguments, 0),
rawArgs = args.slice(0),
isStudio = /\-studio$/.test(mocha._ti_reporter);
if (!mocha._ti_quiet) {
if (args.length === 0) {
if (isStudio) {
args.push(util.cursor.reset + ' ' + util.cursor.reset);
} else {
args.push(util.cursor.resetLine);
}
} else {
var prefix = util.cursor.resetLine;
if (!isStudio) {
// Clear the existing line of text using ANSI codes, get rid of those pesky [INFO] prefixes
args[0] = prefix + (args[0] || '').toString().split(/(?:\r\n|\n|\r)/).join('\n' + prefix);
}
}
// Use the util.js format() port to get node.js-like console functions
Ti.API.log(type === 'log' ? 'info' : type, util.format.apply(this, args));
}
// If the output file exists, write the content to the file as well
if (mocha._ti_output_file) {
mocha._ti_output_file.append(util.format.apply(this, rawArgs).replace(/\x1B\[[0-9;]*[a-zA-Z]/g, ''));
console[type] = function() {
var util = require('titanium/util'),
args = Array.prototype.slice.call(arguments, 0),
rawArgs = args.slice(0),
isStudio = /\-studio$/.test(mocha._ti_reporter);
if (!mocha._ti_quiet) {
if (args.length === 0) {
if (isStudio) {
args.push(util.cursor.reset + ' ' + util.cursor.reset);
} else {
args.push(util.cursor.resetLine);
}
} else {
var prefix = util.cursor.resetLine;
if (!isStudio) {
// Clear the existing line of text using ANSI codes, get rid of those pesky [INFO] prefixes
args[0] = prefix + (args[0] || '').toString().split(/(?:\r\n|\n|\r)/).join('\n' + prefix);
}
}
// Use the util.js format() port to get node.js-like console functions
Ti.API.log(type === 'log' ? 'info' : type, util.format.apply(this, args));
}
// If the output file exists, write the content to the file as well
require.register("reporters/ti-json.js", function(module, exports, require){
/**
* Module dependencies.
*/
var Base = require('./base'),
cursor = require('titanium/util').cursor,
color = Base.color;
/**
* Expose `JSON`.
*/
exports = module.exports = TiJSONReporter;
/**
* Initialize a new `TiJSON` reporter.
*
* @param {Runner} runner
* @api public
*/
function TiJSONReporter(runner) {
require.register("reporters/ti-spec-studio.js", function(module, exports, require){
/**
* Module dependencies.
*/
var Base = require('./base'),
cursor = require('titanium/util').cursor;
/**
* Expose `TiSpecStudio`.
*/
exports = module.exports = TiSpecStudio;
/**
* Initialize a new `TiSpecStudio` test reporter.
*
* @param {Runner} runner
* @api public
*/
function TiSpecStudio(runner) {
Base.call(this, runner);
require.register("reporters/ti-spec.js", function(module, exports, require){
/**
* Module dependencies.
*/
var Base = require('./base'),
cursor = require('titanium/util').cursor,
color = Base.color;
/**
* Expose `TiSpec`.
*/
exports = module.exports = TiSpec;
/**
* Initialize a new `TiSpec` test reporter.
*
* @param {Runner} runner
* @api public
*/
function TiSpec(runner) {