forked from orbit-oss/chalk
Add .visible for emitting text only when enabled (fixes #192)
This commit is contained in:
parent
4372d27f7e
commit
dc092b4a5f
5 changed files with 40 additions and 1 deletions
24
test/visible.js
Normal file
24
test/visible.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import test from 'ava';
|
||||
|
||||
// Spoof supports-color
|
||||
require('./_supports-color')(__dirname);
|
||||
|
||||
const m = require('..');
|
||||
|
||||
test('visible: normal output when enabled', t => {
|
||||
const ctx = new m.constructor({level: 3, enabled: true});
|
||||
t.is(ctx.visible.red('foo'), '\u001B[31mfoo\u001B[39m');
|
||||
t.is(ctx.red.visible('foo'), '\u001B[31mfoo\u001B[39m');
|
||||
});
|
||||
|
||||
test('visible: no output when disabled', t => {
|
||||
const ctx = new m.constructor({level: 3, enabled: false});
|
||||
t.is(ctx.red.visible('foo'), '');
|
||||
t.is(ctx.visible.red('foo'), '');
|
||||
});
|
||||
|
||||
test('visible: no output when level is too low', t => {
|
||||
const ctx = new m.constructor({level: 0, enabled: true});
|
||||
t.is(ctx.visible.red('foo'), '');
|
||||
t.is(ctx.red.visible('foo'), '');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue