mirror of
https://github.com/denoland/std.git
synced 2024-11-21 12:40:03 +00:00
5803cc9172
* BREAKING(assert): remove `assert` from module names * work * fix * work * work * tweaks * fix
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { assertLess, assertThrows } from "./mod.ts";
|
|
|
|
Deno.test("assertLess", () => {
|
|
assertLess(1, 2);
|
|
assertLess(1n, 2n);
|
|
assertLess(1, 1.1);
|
|
|
|
assertThrows(() => assertLess(2, 1));
|
|
});
|