mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
2774a070d6
* fix(log): ensure consistent behavior with `@std/log` * update * fixes
20 lines
651 B
TypeScript
20 lines
651 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { assertEquals } from "@std/assert";
|
|
import { assertSpyCall, spy } from "@std/testing/mock";
|
|
import { blue } from "@std/fmt/colors";
|
|
import { info } from "./info.ts";
|
|
|
|
Deno.test("info()", () => {
|
|
using consoleInfoSpy = spy(console, "log");
|
|
const infoData: number = info(456, 1, 2, 3);
|
|
const infoResolver: boolean | undefined = info(() => true);
|
|
assertEquals(infoData, 456);
|
|
assertEquals(infoResolver, true);
|
|
assertSpyCall(consoleInfoSpy, 0, {
|
|
args: [blue("INFO 456")],
|
|
});
|
|
assertSpyCall(consoleInfoSpy, 1, {
|
|
args: [blue("INFO true")],
|
|
});
|
|
});
|