@kubator/sdk v0.0.1
    Preparing search index...

    Type Alias TestingRuntime

    type TestingRuntime = {
        ExpectEqual: (actual: unknown, expected: unknown) => void;
        Test: (
            description: string,
            test: TestFunction,
            options?: { wrapperLevel?: number },
        ) => void;
    }
    Index
    ExpectEqual: (actual: unknown, expected: unknown) => void
    Test: (
        description: string,
        test: TestFunction,
        options?: { wrapperLevel?: number },
    ) => void