Type Alias UniversalBareDescribe

UniversalBareDescribe: (
    this: void,
    describeThis: string,
    callback: (this: void) => void,
) => void

A minimal interface for describe. This is used in UniversalDescribe.

Compatible with both Node.js's test runner and web-test-runner or other Mocha-style test runners.

Type declaration

    • (this: void, describeThis: string, callback: (this: void) => void): void
    • Parameters

      • this: void
      • describeThis: string
      • callback: (this: void) => void

      Returns void