This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var sprintf = require('sprintf'); | |
var uuid = require('node-uuid'); | |
var Box = require('blessed').Box; | |
var List = require('blessed').List; | |
var Node = require('blessed').Node; | |
var Text = require('blessed').Text; | |
function AlignedList(options){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(buster, define){ | |
var assert; | |
assert = buster.assert; | |
define('monitor-output-test.js', function(require){ | |
var when = require('when'); | |
buster.testCase('when/monitor/console', { | |
'should output information about rejected promises with no onRejected': function(done){ | |
var output = false; |
NewerOlder