diff --git a/test/chalk.js b/test/chalk.js index 227329a..fec2944 100644 --- a/test/chalk.js +++ b/test/chalk.js @@ -13,6 +13,9 @@ require.cache[resolveFrom(__dirname, 'supports-color')] = { const m = require('..'); +console.log('TERM:', process.env.TERM || '[none]'); +console.log('platform:', process.platform || '[unknown]'); + test('don\'t add any styling when called as the base function', t => { t.is(m('foo'), 'foo'); });