Description: Enable chalk tests
 After some investigations in
 https://lists.alioth.debian.org/pipermail/pkg-javascript-devel/2016-November/015662.html
 I discovered that for the build tests to pass, the chalk.enabled
 (https://github.com/chalk/chalk#chalkenabled) flag has to be explicitly
 set to true.
Forwarded: not-needed
Author: Paolo Greppi <paolo.greppi@libpf.com>

Index: node-chalk/test.js
===================================================================
--- node-chalk.orig/test.js
+++ node-chalk/test.js
@@ -3,6 +3,8 @@ var assert = require('assert');
 var semver = require('semver');
 var chalk = require('./');
 
+chalk.enabled = true;
+
 describe('chalk', function () {
 	it('should style string', function () {
 		assert.equal(chalk.underline('foo'), '\u001b[4mfoo\u001b[24m');
