RSX Code Reference
    Preparing search index...

    Interface TestEntry

    Contains data about a single unit test.

    interface TestEntry {
        name: string;
        test: () => void;
    }
    Index
    name: string

    The name of the test.

    test: () => void

    The test function to execute.