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

12 lines
345 B
TypeScript
Raw Normal View History

import { assertEqual, test } from "https://deno.land/x/testing/testing.ts";
import { color } from "./main";
import "example";
test(function singleColor() {
assertEqual(color.red("Hello world"), "Hello world");
});
test(function doubleColor() {
assertEqual(color.red.bgBlue("Hello world"), "Hello world");
});