/[sudobot]/trunk/tests/framework/utils/utils.test.ts
ViewVC logotype

Contents of /trunk/tests/framework/utils/utils.test.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1076 byte(s)
chore: add trunk
1 import { notIn, requireNonNull } from "@framework/utils/utils";
2 import { describe, expect, it } from "vitest";
3
4 describe("utils", () => {
5 describe("notIn", () => {
6 it("should return true if the key is not in the object", () => {
7 expect(notIn({} as Record<string, string>, "key")).toBe(true);
8 });
9
10 it("should return false if the key is in the object", () => {
11 expect(notIn({ key: "value" } as Record<string, string>, "key")).toBe(false);
12 });
13 });
14
15 describe("requireNonNull", () => {
16 it("should throw an error if the value is null", () => {
17 expect(() => requireNonNull(null)).toThrowError("Value cannot be null or undefined");
18 });
19
20 it("should throw an error if the value is undefined", () => {
21 expect(() => requireNonNull(undefined)).toThrowError(
22 "Value cannot be null or undefined"
23 );
24 });
25
26 it("should return the value if it is not null", () => {
27 expect(requireNonNull(1)).toBe(1);
28 });
29 });
30 });

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26