1 |
rakinar2 |
575 |
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 |
|
|
}); |