mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
e3a0c6f15f
Original: b4fba9fb24
24 lines
763 B
TypeScript
24 lines
763 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||
import { assert, test } from "../testing/mod.ts";
|
||
import { red, bgBlue, setEnabled, getEnabled } from "./mod.ts";
|
||
import "./example.ts";
|
||
|
||
test(function singleColor() {
|
||
assert.equal(red("Hello world"), "[31mHello world[39m");
|
||
});
|
||
|
||
test(function doubleColor() {
|
||
assert.equal(bgBlue(red("Hello world")), "[44m[31mHello world[39m[49m");
|
||
});
|
||
|
||
test(function replacesCloseCharacters() {
|
||
assert.equal(red("Hel[39mlo"), "[31mHel[31mlo[39m");
|
||
});
|
||
|
||
test(function enablingColors() {
|
||
assert.equal(getEnabled(), true);
|
||
setEnabled(false);
|
||
assert.equal(bgBlue(red("Hello world")), "Hello world");
|
||
setEnabled(true);
|
||
assert.equal(red("Hello world"), "[31mHello world[39m");
|
||
});
|