Require Node.js 6

This commit is contained in:
Sindre Sorhus 2018-09-18 14:05:08 +07:00
parent 70f22d87ba
commit 0307f263cb
13 changed files with 204 additions and 216 deletions

View file

@ -5,38 +5,38 @@ import execa from 'execa';
// Spoof supports-color
require('./_supports-color')(__dirname);
const m = require('..');
const chalk = require('..');
test('don\'t output colors when manually disabled', t => {
const oldLevel = m.level;
m.level = 0;
t.is(m.red('foo'), 'foo');
m.level = oldLevel;
const oldLevel = chalk.level;
chalk.level = 0;
t.is(chalk.red('foo'), 'foo');
chalk.level = oldLevel;
});
test('enable/disable colors based on overall chalk enabled property, not individual instances', t => {
const oldLevel = m.level;
m.level = 1;
const red = m.red;
const oldLevel = chalk.level;
chalk.level = 1;
const {red} = chalk;
t.is(red.level, 1);
m.level = 0;
t.is(red.level, m.level);
m.level = oldLevel;
chalk.level = 0;
t.is(red.level, chalk.level);
chalk.level = oldLevel;
});
test('propagate enable/disable changes from child colors', t => {
const oldLevel = m.level;
m.level = 1;
const red = m.red;
const oldLevel = chalk.level;
chalk.level = 1;
const {red} = chalk;
t.is(red.level, 1);
t.is(m.level, 1);
t.is(chalk.level, 1);
red.level = 0;
t.is(red.level, 0);
t.is(m.level, 0);
m.level = 1;
t.is(chalk.level, 0);
chalk.level = 1;
t.is(red.level, 1);
t.is(m.level, 1);
m.level = oldLevel;
t.is(chalk.level, 1);
chalk.level = oldLevel;
});
test('disable colors if they are not supported', async t => {