Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/testing   js

Repository URL to install this package:

Version: 7.0.10 

/ testing-module.d.ts

import { HttpServer, INestApplication, INestMicroservice } from '@nestjs/common';
import { NestMicroserviceOptions } from '@nestjs/common/interfaces/microservices/nest-microservice-options.interface';
import { NestApplicationOptions } from '@nestjs/common/interfaces/nest-application-options.interface';
import { Type } from '@nestjs/common/interfaces/type.interface';
import { NestApplicationContext } from '@nestjs/core';
import { ApplicationConfig } from '@nestjs/core/application-config';
import { NestContainer } from '@nestjs/core/injector/container';
import { Module } from '@nestjs/core/injector/module';
export declare class TestingModule extends NestApplicationContext {
    private readonly applicationConfig;
    constructor(container: NestContainer, scope: Type<any>[], contextModule: Module, applicationConfig: ApplicationConfig);
    createNestApplication<T extends INestApplication = INestApplication>(httpAdapter?: HttpServer, options?: NestApplicationOptions): T;
    createNestMicroservice<T extends object>(options: NestMicroserviceOptions & T): INestMicroservice;
    private createHttpAdapter;
    private applyLogger;
    private createAdapterProxy;
}