Backstage
    Preparing search index...
    interface TestBackend {
        server: ExtendedHttpServer;
        add(feature: BackendFeature | Promise<{ default: BackendFeature }>): void;
        start(): Promise<{ result: BackendStartupResult }>;
        stop(): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    Provides access to the underling HTTP server for use with utilities such as supertest.

    If the root http router service has been replaced, this will throw an error.

    Methods