1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/colors/test.ts

23 lines
682 B
TypeScript
Raw Normal View History

// 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"), "Hello world");
});
test(function doubleColor() {
assert.equal(bgBlue(red("Hello world")), "Hello world");
});
test(function replacesCloseCharacters() {
assert.equal(red("Hello"), "Hello");
});
test(function enablingColors() {
assert.equal(getEnabled(), true);
setEnabled(false);
assert.equal(bgBlue(red("Hello world")), "Hello world");
});