bupkis
    Preparing search index...

    Type Alias Phrase

    Union type combining both phrase literal types.

    A phrase represents the natural language portion of an assertion that describes the expected behavior. It can be either a single string literal or a choice between multiple string literals.

    // Single phrase literal
    type Phrase1 = PhraseLiteral; // "to be a string"

    // Choice phrase literal
    type Phrase2 = PhraseLiteralChoice; // ["to be", "to equal"]