SuiteLike: {
    filepath?: string;
    name: Suite.Name;
    run(abortSignal?): Suite.Results | PromiseLike<Suite.Results>;
}

A suite of related tests that can be run together.

Type declaration

  • Optional Readonly filepath?: string

    The filepath to this SuiteLike, when available.

  • Readonly name: Suite.Name

    The name of this SuiteLike.

  • run:function
    • Runs this SuiteLike.

      Parameters

      • Optional abortSignal: AbortSignal

      Returns Suite.Results | PromiseLike<Suite.Results>

      The results of running this SuiteLike

      Example

      A synchronous implementation:

      const results = suite.run();
      

      Example

      An asynchronous implementation:

      const results = await suite.run();
      

      Example

      Using an AbortSignal to cancel the suite:

      const ac = new AbortController();
      const signal = ac.signal;

      suite
      .run(signal)
      .then(console.log)
      .catch(error => {
      if (error.name === 'AbortError') {
      console.log('The suite was aborted');
      }
      });

      ac.abort();