mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
d102a10235
* refactor: import from `@std/assert` * update
12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { assertEquals } from "@std/assert";
|
|
import "./setup.ts";
|
|
import { debug } from "./debug.ts";
|
|
|
|
Deno.test("debug()", () => {
|
|
const debugData: string = debug("foo");
|
|
const debugResolver: string | undefined = debug(() => "foo");
|
|
assertEquals(debugData, "foo");
|
|
assertEquals(debugResolver, undefined);
|
|
});
|