Skip to content

Commit

Permalink
chore(nestjs): add app service to test app module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjoertjuh committed Sep 19, 2024
1 parent af0e55e commit 7e12770
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { GraphQLModule } from '@nestjs/graphql';
import { SentryGlobalGenericFilter, SentryModule } from '@sentry/nestjs/setup';
import { AppController } from './app.controller';
import { AppResolver } from './app.resolver';
import { AppService } from './app.service';

@Module({
imports: [
Expand All @@ -17,6 +18,7 @@ import { AppResolver } from './app.resolver';
],
controllers: [AppController],
providers: [
AppService,
AppResolver,
{
provide: APP_FILTER,
Expand Down

0 comments on commit 7e12770

Please sign in to comment.