eliminar spec de notificaciones

This commit is contained in:
Mariela 2022-07-01 14:01:36 -06:00
parent c54fc6880b
commit eacb869538
2 changed files with 0 additions and 38 deletions

View File

@ -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>(NotificationsController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@ -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>(NotificationsService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});