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
30 lines
815 B
TypeScript
30 lines
815 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { AssertionError, assertNotStrictEquals, assertThrows } from "./mod.ts";
|
|
|
|
Deno.test({
|
|
name: "strictly unequal pass case",
|
|
fn() {
|
|
assertNotStrictEquals(true, false);
|
|
assertNotStrictEquals(10, 11);
|
|
assertNotStrictEquals("abc", "xyz");
|
|
assertNotStrictEquals<unknown>(1, "1");
|
|
assertNotStrictEquals(-0, +0);
|
|
|
|
const xs = [1, false, "foo"];
|
|
const ys = [1, true, "bar"];
|
|
assertNotStrictEquals(xs, ys);
|
|
|
|
const x = { a: 1 };
|
|
const y = { a: 2 };
|
|
assertNotStrictEquals(x, y);
|
|
},
|
|
});
|
|
|
|
Deno.test({
|
|
name: "strictly unequal fail case",
|
|
fn() {
|
|
assertThrows(() => assertNotStrictEquals(1, 1), AssertionError);
|
|
assertThrows(() => assertNotStrictEquals(NaN, NaN), AssertionError);
|
|
},
|
|
});
|