mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
0b2497f16e
* fix: update codebase to work with Deno RC * work * fix * fix * fix * fixes * work * update * fixes * fix * revert
36 lines
967 B
TypeScript
36 lines
967 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// This file is copied from `std/assert`.
|
|
|
|
import { AssertionError } from "@std/assert/assertion-error";
|
|
import { buildNotEqualErrorMessage } from "./_build_message.ts";
|
|
import { equal } from "./_equal.ts";
|
|
import type { EqualOptions } from "./_types.ts";
|
|
|
|
/**
|
|
* Make an assertion that `actual` and `expected` are not equal, deeply.
|
|
* If not then throw.
|
|
*
|
|
* Type parameter can be specified to ensure values under comparison have the same type.
|
|
*
|
|
* @example
|
|
* ```ts ignore
|
|
* import { assertNotEquals } from "@std/assert";
|
|
*
|
|
* assertNotEquals(1, 2); // Doesn't throw
|
|
* assertNotEquals(1, 1); // Throws
|
|
* ```
|
|
*/
|
|
export function assertNotEquals<T>(
|
|
actual: T,
|
|
expected: T,
|
|
options: EqualOptions = {},
|
|
) {
|
|
if (!equal(actual, expected, options)) {
|
|
return;
|
|
}
|
|
|
|
const message = buildNotEqualErrorMessage(actual, expected, options);
|
|
throw new AssertionError(message);
|
|
}
|