mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
544 B
16 lines
544 B
11 years ago
|
'use strict';
|
||
|
/*jshint asi: true */
|
||
|
var assert = require('assert')
|
||
|
, styles = require('../')
|
||
|
|
||
|
function inspect(obj, depth) {
|
||
|
console.log(require('util').inspect(obj, false, depth || 5, true));
|
||
|
}
|
||
|
|
||
|
assert.equal(styles.reset('reset'), '\u001b[0mreset\u001b[22m', 'reset')
|
||
|
assert.equal(styles.underline('underlined'), '\u001b[4munderlined\u001b[24m', 'underline')
|
||
|
assert.equal(styles.bright('bright'), '\u001b[1mbright\u001b[22m', 'bright')
|
||
|
assert.equal(styles.inverse('inversed'), '\u001b[7minversed\u001b[27m', 'inverse')
|
||
|
|
||
|
console.log('OK');
|