Skip to content
Snippets Groups Projects

test/improve test coverage

Merged Bastien DUMONT requested to merge test/improve-test-coverage into V2.0
Compare and
13 files
+ 703
202
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -2,14 +2,24 @@ import { Test, TestingModule } from '@nestjs/testing';
import { ContactController } from './contact.controller';
import { ContactService } from './contact.service';
import { MailerModule } from '../mailer/mailer.module';
import { ContactMessage } from './schemas/contact-message.schema';
describe('ContactController', () => {
let controller: ContactController;
const contactServiceMock = {
sendMessage: jest.fn(),
};
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
imports: [MailerModule],
providers: [ContactService],
providers: [
{
provide: ContactService,
useValue: contactServiceMock,
},
],
controllers: [ContactController],
}).compile();
@@ -19,4 +29,11 @@ describe('ContactController', () => {
it('should be defined', () => {
expect(controller).toBeDefined();
});
it('should call sendMessage', async () => {
const spyer = jest.spyOn(contactServiceMock, 'sendMessage');
await controller.sendContactMessage({ contactMessage: new ContactMessage() });
expect(spyer).toBeCalledTimes(1);
expect(spyer).toBeCalledWith(new ContactMessage());
});
});
Loading