From e3a0c6f15f6bf2c0b2c061ab2395866ecfb57576 Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Sun, 3 Mar 2019 23:21:24 +0100 Subject: [PATCH] Re-enabling colors after color testing (denoland/deno_std#226) Original: https://github.com/denoland/deno_std/commit/b4fba9fb24f1e968bc92531c3c31662387bd032d --- colors/test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/test.ts b/colors/test.ts index bdce355234..bfe8bc4f51 100644 --- a/colors/test.ts +++ b/colors/test.ts @@ -19,4 +19,6 @@ test(function enablingColors() { assert.equal(getEnabled(), true); setEnabled(false); assert.equal(bgBlue(red("Hello world")), "Hello world"); + setEnabled(true); + assert.equal(red("Hello world"), "Hello world"); });