1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-31 19:44:10 -05:00
denoland-deno/colors/test.ts

26 lines
781 B
TypeScript
Raw Normal View History

2019-02-07 11:45:47 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-03-06 16:39:50 -05:00
import { test } from "../testing/mod.ts";
import { assertEq } from "../testing/asserts.ts";
2019-01-19 05:09:35 -05:00
import { red, bgBlue, setEnabled, getEnabled } from "./mod.ts";
2019-01-10 20:18:21 -05:00
import "./example.ts";
2018-12-18 23:30:44 -05:00
test(function singleColor() {
2019-03-06 16:39:50 -05:00
assertEq(red("Hello world"), "Hello world");
2018-12-18 23:30:44 -05:00
});
test(function doubleColor() {
2019-03-06 16:39:50 -05:00
assertEq(bgBlue(red("Hello world")), "Hello world");
2019-01-15 16:16:52 -05:00
});
2019-01-19 05:09:35 -05:00
test(function replacesCloseCharacters() {
2019-03-06 16:39:50 -05:00
assertEq(red("Hello"), "Hello");
2019-01-15 16:16:52 -05:00
});
2019-01-19 05:09:35 -05:00
test(function enablingColors() {
2019-03-06 16:39:50 -05:00
assertEq(getEnabled(), true);
2019-01-19 05:09:35 -05:00
setEnabled(false);
2019-03-06 16:39:50 -05:00
assertEq(bgBlue(red("Hello world")), "Hello world");
setEnabled(true);
2019-03-06 16:39:50 -05:00
assertEq(red("Hello world"), "Hello world");
2018-12-18 23:30:44 -05:00
});