From eacb869538b03635579eae39a67ae2dafe0cd850 Mon Sep 17 00:00:00 2001 From: Mariela Date: Fri, 1 Jul 2022 14:01:36 -0600 Subject: [PATCH] eliminar spec de notificaciones --- .../notifications.controller.spec.ts | 20 ------------------- .../notifications.service.spec.ts | 18 ----------------- 2 files changed, 38 deletions(-) delete mode 100644 servicio-notificaciones/src/notifications/notifications.controller.spec.ts delete mode 100644 servicio-notificaciones/src/notifications/notifications.service.spec.ts diff --git a/servicio-notificaciones/src/notifications/notifications.controller.spec.ts b/servicio-notificaciones/src/notifications/notifications.controller.spec.ts deleted file mode 100644 index 9aa4a006..00000000 --- a/servicio-notificaciones/src/notifications/notifications.controller.spec.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { NotificationsController } from './notifications.controller'; -import { NotificationsService } from './notifications.service'; - -describe('NotificationsController', () => { - let controller: NotificationsController; - - beforeEach(async () => { - const module: TestingModule = await Test.createTestingModule({ - controllers: [NotificationsController], - providers: [NotificationsService], - }).compile(); - - controller = module.get(NotificationsController); - }); - - it('should be defined', () => { - expect(controller).toBeDefined(); - }); -}); diff --git a/servicio-notificaciones/src/notifications/notifications.service.spec.ts b/servicio-notificaciones/src/notifications/notifications.service.spec.ts deleted file mode 100644 index 47119104..00000000 --- a/servicio-notificaciones/src/notifications/notifications.service.spec.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { NotificationsService } from './notifications.service'; - -describe('NotificationsService', () => { - let service: NotificationsService; - - beforeEach(async () => { - const module: TestingModule = await Test.createTestingModule({ - providers: [NotificationsService], - }).compile(); - - service = module.get(NotificationsService); - }); - - it('should be defined', () => { - expect(service).toBeDefined(); - }); -});