Comunica
    Preparing search index...

    Interface ITestTableConfigBase

    interface ITestTableConfigBase {
        additionalPrefixes?: Record<string, string>;
        aliases?: AliasMap;
        arity: 2 | 3 | 1 | "vary";
        config?: IActionContext;
        notation: Notation;
        operation: string;
    }
    Index

    Properties

    additionalPrefixes?: Record<string, string>

    Additional prefixes can be provided if the defaultPrefixes in ./Aliases.ts are not enough.

    aliases?: AliasMap
    arity: 2 | 3 | 1 | "vary"

    How many arguments does the operation take. The vary option means you don't know. This can only be provided when the notation is Notation.Function.

    Configuration that'll we provided to the Evaluator. If the type is sync, the test will be preformed both sync and async.

    notation: Notation
    operation: string

    Operation / function that needs to be called on the arguments provided in the TestTable.