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
2019-03-18 11:08:01 -04:00

25 lines
818 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { red, bgBlue, setEnabled, getEnabled } from "./mod.ts";
import "../examples/colors.ts";
test(function singleColor() {
assertEquals(red("Hello world"), "Hello world");
});
test(function doubleColor() {
assertEquals(bgBlue(red("Hello world")), "Hello world");
});
test(function replacesCloseCharacters() {
assertEquals(red("Hello"), "Hello");
});
test(function enablingColors() {
assertEquals(getEnabled(), true);
setEnabled(false);
assertEquals(bgBlue(red("Hello world")), "Hello world");
setEnabled(true);
assertEquals(red("Hello world"), "Hello world");
});