Expect import { Expect } from "destack:test"; A value assertion chain. export struct Expect { get not(): Expect; check(condition: boolean, message: string, negatedMessage?: string | undefined): void; toEqual(expected: T): void; toBe(expected: T): void; toStrictEqual(expected: T): void; toContain(expected: U): void; toBeTruthy(): void; toBeFalsy(): void; toBeNull(): void; toBeUndefined(): void; toBeDefined(): void; toBeGreaterThan(expected: float64): void; toBeLessThan(expected: float64): void; } language/library/src/test/expect.ds:7:120 Members get not(): Expect Negated assertions. check(condition: boolean, message: string, negatedMessage?: string | undefined): void Check one assertion result. toEqual(expected: T): void Assert that the value equals expected. toBe(expected: T): void Assert that the value strictly equals expected. toStrictEqual(expected: T): void Assert that the value deeply equals expected. toContain(expected: U): void Assert that the value contains expected. toBeTruthy(): void Assert that the value is true. toBeFalsy(): void Assert that the value is false. toBeNull(): void Assert that the value is null. toBeUndefined(): void Assert that the value is undefined. toBeDefined(): void Assert that the value is defined. toBeGreaterThan(expected: float64): void Assert that the value is greater than expected. toBeLessThan(expected: float64): void Assert that the value is less than expected.