@flowcore/testing-microservice
v1.1.0
Published
Testing library for facilitating tests for the @flowcore/microservice modules
Downloads
233
Readme
Testing Microservice
Testing library for facilitating tests for the @flowcore/microservice modules
Installation
install with npm:
npm install --save-dev @jbiskur/nestjs-test-utilities @flowcore/testing-microservice
or yarn:
yarn add @jbiskur/nestjs-test-utilities @flowcore/testing-microservice -D
Usage
to use the library you can use it with the NestApplicationBuilder
import {LoggerModulePlugin} from "@flowcore/testing-microservice";
// .. when you initialize your test
app = await new NestApplicationBuilder()
.withTestModule((testModule) => testModule.withModule(TestModule))
.with(LoggerModulePlugin)
.build();
Development
yarn install
or with npm:
npm install